Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexLazov authored and corpsee committed Apr 15, 2022
1 parent 4a8afce commit 204e77c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/CheckerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ class CheckerCommand extends Command
*/
protected $exclude = [];

/**
* @var array
*/
protected $files = [];

/**
* @var OutputInterface
*/
Expand Down Expand Up @@ -112,7 +117,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if (!\is_null($exclude)) {
$this->exclude = \array_map('trim', \explode(',', $exclude));
}

// Set up files:
if (!\is_null($files)) {
$this->files = \array_map('trim', \explode(',', $files));
Expand Down Expand Up @@ -265,7 +270,7 @@ protected function processDirectory(string $path = '', array &$workList = []): v
}
}
}

/**
* Iterate through the files and check them out
*
Expand Down

0 comments on commit 204e77c

Please sign in to comment.