Skip to content

Commit 17f604e

Browse files
committed
always return query instance from named scope
1 parent 19fc5b2 commit 17f604e

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

src/Illuminate/Database/Eloquent/Model.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -2402,7 +2402,8 @@ public function __call($method, $parameters)
24022402
public static function __callStatic($method, $parameters)
24032403
{
24042404
if (static::isScopeMethodWithAttribute($method)) {
2405-
$parameters = [static::query(), ...$parameters];
2405+
$parameters = [$query = static::query(), ...$parameters];
2406+
return (new static)->$method(...$parameters) ?? $query;
24062407
}
24072408

24082409
return (new static)->$method(...$parameters);

tests/Integration/Database/EloquentNamedScopeAttributeTest.php

+15-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use Orchestra\Testbench\Attributes\WithMigration;
66
use Orchestra\Testbench\TestCase;
7+
use PHPUnit\Framework\Attributes\DataProvider;
78

89
#[WithMigration]
910
class EloquentNamedScopeAttributeTest extends TestCase
@@ -20,17 +21,27 @@ protected function setUp(): void
2021
);
2122
}
2223

23-
public function test_it_can_query_named_scoped_from_the_query_builder()
24+
#[DataProvider('namedScopeDataProvider')]
25+
public function test_it_can_query_named_scoped_from_the_query_builder(string $methodName)
2426
{
25-
$query = Fixtures\NamedScopeUser::query()->verified(true);
27+
$query = Fixtures\NamedScopeUser::query()->{$methodName}(true);
2628

2729
$this->assertSame($this->query, $query->toRawSql());
2830
}
2931

30-
public function test_it_can_query_named_scoped_from_static_query()
32+
#[DataProvider('namedScopeDataProvider')]
33+
public function test_it_can_query_named_scoped_from_static_query(string $methodName)
3134
{
32-
$query = Fixtures\NamedScopeUser::verified(true);
35+
$query = Fixtures\NamedScopeUser::{$methodName}(true);
3336

3437
$this->assertSame($this->query, $query->toRawSql());
3538
}
39+
40+
public static function namedScopeDataProvider(): array
41+
{
42+
return [
43+
'scope with return' => ['verified'],
44+
'scope without return' => ['verifiedWithoutReturn']
45+
];
46+
}
3647
}

tests/Integration/Database/Fixtures/NamedScopeUser.php

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ protected function verified(Builder $builder, bool $email = true)
2727
);
2828
}
2929

30+
#[NamedScope]
31+
protected function verifiedWithoutReturn(Builder $builder, bool $email = true)
32+
{
33+
$this->verified($builder, $email);
34+
}
35+
3036
public function scopeVerifiedUser(Builder $builder, bool $email = true)
3137
{
3238
return $builder->when(

0 commit comments

Comments
 (0)