This should be checking the value not the key

This commit is contained in:
Gabriel Baker 2013-05-23 06:36:40 +01:00
parent c1bf4ab636
commit e342483f03

View file

@ -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'];