fixCodeStyle() public method

Fix Code Style for a file or a directory
public fixCodeStyle ( $filePath, array $fixers, $level = null )
$fixers array
 /**
  *
  */
 public function testPathDoesNotExist()
 {
     $messageBag = new MessageBag();
     $manager = new Localization($messageBag);
     $this->setExpectedException('\\Potsky\\LaravelLocalizationHelpers\\Factory\\Exception');
     $manager->fixCodeStyle(self::LANG_DIR_PATH . '/file_does_not_exist', array('align_double_arrow', 'short_array_syntax'));
 }