Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 64cdf2a

Browse files
silasjoistenshish
authored andcommittedMay 16, 2025·
Fix
1 parent bb5b088 commit 64cdf2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎generator/src/Commands/ScanObjectsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Symfony\Component\Console\Output\OutputInterface;
1414
use Symfony\Component\Console\Style\SymfonyStyle;
1515

16-
class ScanObjectsCommand extends Command
16+
final class ScanObjectsCommand extends Command
1717
{
1818
private SymfonyStyle $io;
1919
private Scanner $scanner;
@@ -26,7 +26,7 @@ protected function configure(): void
2626
;
2727
}
2828

29-
public function initialize(InputInterface $input, OutputInterface $output): void
29+
protected function initialize(InputInterface $input, OutputInterface $output): void
3030
{
3131
$this->io = new SymfonyStyle($input, $output);
3232
$this->scanner = new Scanner(DocPage::referenceDir());

0 commit comments

Comments
 (0)
Please sign in to comment.