Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12.x] Do not require returning a Builder instance from a local scope method #55246

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/Illuminate/Database/Eloquent/Attributes/Scope.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ class Scope
{
/**
* Create a new attribute instance.
*
* @param array|string $classes
* @return void
*/
public function __construct()
{
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Eloquent/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -2402,7 +2402,7 @@ public function __call($method, $parameters)
public static function __callStatic($method, $parameters)
{
if (static::isScopeMethodWithAttribute($method)) {
$parameters = [static::query(), ...$parameters];
return static::query()->$method(...$parameters);
}

return (new static)->$method(...$parameters);
Expand Down
19 changes: 15 additions & 4 deletions tests/Integration/Database/EloquentNamedScopeAttributeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Orchestra\Testbench\Attributes\WithMigration;
use Orchestra\Testbench\TestCase;
use PHPUnit\Framework\Attributes\DataProvider;

#[WithMigration]
class EloquentNamedScopeAttributeTest extends TestCase
Expand All @@ -20,17 +21,27 @@ protected function setUp(): void
);
}

public function test_it_can_query_named_scoped_from_the_query_builder()
#[DataProvider('namedScopeDataProvider')]
public function test_it_can_query_named_scoped_from_the_query_builder(string $methodName)
{
$query = Fixtures\NamedScopeUser::query()->verified(true);
$query = Fixtures\NamedScopeUser::query()->{$methodName}(true);

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

public function test_it_can_query_named_scoped_from_static_query()
#[DataProvider('namedScopeDataProvider')]
public function test_it_can_query_named_scoped_from_static_query(string $methodName)
{
$query = Fixtures\NamedScopeUser::verified(true);
$query = Fixtures\NamedScopeUser::{$methodName}(true);

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

public static function namedScopeDataProvider(): array
{
return [
'scope with return' => ['verified'],
'scope without return' => ['verifiedWithoutReturn'],
];
}
}
6 changes: 6 additions & 0 deletions tests/Integration/Database/Fixtures/NamedScopeUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ protected function verified(Builder $builder, bool $email = true)
);
}

#[NamedScope]
protected function verifiedWithoutReturn(Builder $builder, bool $email = true)
{
$this->verified($builder, $email);
}

public function scopeVerifiedUser(Builder $builder, bool $email = true)
{
return $builder->when(
Expand Down
Loading