Skip to content

Commit

Permalink
Apply fixes from StyleCI (#809)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelien authored Nov 19, 2022
1 parent 0c7b320 commit 3c2217a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/NewMapperCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
return Command::FAILURE;
}

if (!is_null($date)) {
if (null !== $date) {
$aoiCommand = $this->getApplication()->find('osmcha:aoi');
$aoiCommand->run(new ArrayInput([
'region' => $key,
Expand Down

0 comments on commit 3c2217a

Please sign in to comment.