Skip to content

Commit

Permalink
bot: fix cs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
nikophil authored and kbond committed Jun 7, 2024
1 parent 0034c78 commit 73b70e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Maker/Factory/MakeFactoryData.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function __construct(
private ?\ReflectionClass $repository,
private string $staticAnalysisTool,
private bool $persisted,
bool $withPhpDoc
bool $withPhpDoc,
) {
$this->uses = [
$this->getFactoryClass(),
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/Factory/MakeFactoryPHPDocMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function __construct(private string $objectName, private string $prototyp
}

/** @return non-empty-list<self> */
public static function createAll(MakeFactoryData $makeFactoryData): array
public static function createAll(MakeFactoryData $makeFactoryData): array
{
$methods = [];

Expand Down
2 changes: 1 addition & 1 deletion src/Maker/Factory/MakeFactoryQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private function __construct(
private bool $withPhpDoc,
private string $class,
private bool $generateAllFactories,
private Generator $generator
private Generator $generator,
) {
}

Expand Down

0 comments on commit 73b70e5

Please sign in to comment.