diff --git a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php b/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php index 99fa888..a1a59b8 100644 --- a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php +++ b/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php @@ -7,7 +7,7 @@ namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\PhpAttributesClo use Illuminate\Database\Eloquent\Model; // Tests: closure expression inside an attribute argument (PHP 8.5+) -#[SomeClosureAttr(fn() => true)] +#[SomeClosureAttr(fn () => true)] class ClosureInAttribute extends Model { protected $table = 'simples';