diff --git a/src/Robo/Plugin/Commands/CICommands.php b/src/Robo/Plugin/Commands/CICommands.php index 0e3c339..fed34fc 100644 --- a/src/Robo/Plugin/Commands/CICommands.php +++ b/src/Robo/Plugin/Commands/CICommands.php @@ -2,7 +2,6 @@ namespace Usher\Robo\Plugin\Commands; -use Robo\Exception\TaskException; use Robo\Result; use Robo\Robo; use Robo\Tasks; @@ -114,7 +113,7 @@ protected function jobRunCodingStandards(bool $applyFixes = false): Result ); $phpcsIgnorePaths = implode( separator: ',', - array: $this->getRequiredRoboConfigArrayFor(key: 'phpcs_ignore_paths'), + array: $this->getOptionalRoboConfigArrayFor(key: 'phpcs_ignore_paths'), ); $phpcsPhpVersion = Robo::config()->get('php_current_version', $this::PHPCS_DEFAULT_PHP_VERSION); $twigLintEnabled = Robo::config()->get('twig_lint_enable') ?? true;