Skip to content

Commit

Permalink
Fix PHPStan issue
Browse files Browse the repository at this point in the history
  • Loading branch information
WendellAdriel committed Mar 13, 2024
1 parent aff788f commit d5cb259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Commands/LiftMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class LiftMigration extends Command
protected $signature = 'lift:migration {model}
{--namespace=App\\Models\\}';

protected static string $defaultName = 'lift:migration';
protected static $defaultName = 'lift:migration'; // @phpstan-ignore-line

Check failure on line 27 in src/Console/Commands/LiftMigration.php

View workflow job for this annotation

GitHub Actions / PHP 8.3 - Laravel 10.* - prefer-stable

No error to ignore is reported on line 27.

Check failure on line 27 in src/Console/Commands/LiftMigration.php

View workflow job for this annotation

GitHub Actions / PHP 8.2 - Laravel 10.* - prefer-stable

No error to ignore is reported on line 27.

Check failure on line 27 in src/Console/Commands/LiftMigration.php

View workflow job for this annotation

GitHub Actions / PHP 8.1 - Laravel 10.* - prefer-stable

No error to ignore is reported on line 27.

protected $description = 'Create migration files based on Lift models';

Expand Down

0 comments on commit d5cb259

Please sign in to comment.