diff --git a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php b/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php deleted file mode 100644 index a1a59b8..0000000 --- a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Models/ClosureInAttribute.php +++ /dev/null @@ -1,14 +0,0 @@ - true)] -class ClosureInAttribute extends Model -{ - protected $table = 'simples'; -} diff --git a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Test.php b/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Test.php deleted file mode 100644 index 1208731..0000000 --- a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/Test.php +++ /dev/null @@ -1,27 +0,0 @@ -app->make(ModelsCommand::class); - - $tester = $this->runCommand($command, [ - '--write' => true, - ]); - - $this->assertSame(0, $tester->getStatusCode()); - $this->assertStringContainsString('Written new phpDocBlock to', $tester->getDisplay()); - $this->assertMatchesMockedSnapshot(); - } -} diff --git a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/__snapshots__/Test__test__1.php b/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/__snapshots__/Test__test__1.php deleted file mode 100644 index 77e0f03..0000000 --- a/tests/Console/ModelsCommand/PhpAttributesClosureInAttribute/__snapshots__/Test__test__1.php +++ /dev/null @@ -1,22 +0,0 @@ -|ClosureInAttribute newModelQuery() - * @method static \Illuminate\Database\Eloquent\Builder|ClosureInAttribute newQuery() - * @method static \Illuminate\Database\Eloquent\Builder|ClosureInAttribute query() - * @method static \Illuminate\Database\Eloquent\Builder|ClosureInAttribute whereId($value) - * @mixin \Eloquent - */ -#[SomeClosureAttr(fn() => true)] -class ClosureInAttribute extends Model -{ - protected $table = 'simples'; -}