Merge pull request #63 from gabriel403/hotfix/phpcsfixer

This should be checking the value not the key
This commit is contained in:
Dan Cryer 2013-05-23 00:47:18 -07:00
commit 7c9ad57f18

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