diff --git a/PHPCI/Plugin/PhpCsFixer.php b/PHPCI/Plugin/PhpCsFixer.php index b4d298e9..9aaa7536 100644 --- a/PHPCI/Plugin/PhpCsFixer.php +++ b/PHPCI/Plugin/PhpCsFixer.php @@ -66,7 +66,7 @@ class PhpCsFixer implements \PHPCI\Plugin $this->args .= ' --diff'; } - if ( array_key_exists('level', $options) && array_key_exists($options['level'], $this->levels) ) + if ( array_key_exists('level', $options) && in_array($options['level'], $this->levels) ) { $this->level = $options['level']; $this->args .= ' --level='.$options['level'];