Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangut committed Dec 26, 2024
1 parent cdb35b0 commit f581da1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ includes:
- %rootDir%/../../juliangut/phpstan-config/phpstan-phpunit.neon

parameters:
phpVersion: 80300
level: max
parallel:
maximumNumberOfProcesses: 7
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ExportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function __construct(
parent::__construct();
}

public static function getDefaultName(): ?string
public static function getDefaultName(): string
{
return 'export-build|e:b';
}
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ScaffoldAllCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(
parent::__construct();
}

public static function getDefaultName(): ?string
public static function getDefaultName(): string
{
return 'scaffold-all|s:a';
}
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ScaffoldCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function __construct(
];
}

public static function getDefaultName(): ?string
public static function getDefaultName(): string
{
return 'scaffold-image|s:i';
}
Expand Down

0 comments on commit f581da1

Please sign in to comment.