Skip to content

Commit

Permalink
Fix coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
Zales0123 committed Sep 16, 2021
1 parent 54106f7 commit fb4158e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/Sylius/Bundle/CoreBundle/Command/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$this->ensureDirectoryExistsAndIsWritable((string) $this->getContainer()->getParameter('kernel.cache_dir'), $output);

$errored = false;
/**
* @var int $step
* @var array $command
*/
foreach ($this->commands as $step => $command) {
try {
$outputStyle->newLine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class ShowAvailablePluginsCommand extends Command
* @phpstan-var ArrayCollection<PluginInfo>
* @psalm-var ArrayCollection<array-key, PluginInfo>
*/
private ?ArrayCollection $plugins = null;
private ArrayCollection $plugins;

protected function configure(): void
{
Expand Down

0 comments on commit fb4158e

Please sign in to comment.