Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nohponex committed Jan 19, 2016
1 parent 8961395 commit fd84f49
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Binary.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function invoke()

try {
$testParserCollection = $this->getTestParserCollection();
} catch(\Exception $e) {
} catch (\Exception $e) {
echo $e->getMessage();
return 1;
}
Expand Down Expand Up @@ -387,11 +387,11 @@ function ($f) {
$testParser = new TestParser($filename);
} catch (\Exception $e) {
$message = sprintf(
'Failed to parse file "%s" %s With message: "%s"',
$filename,
PHP_EOL,
$e->getMessage()
) . PHP_EOL;
'Failed to parse file "%s" %s With message: "%s"',
$filename,
PHP_EOL,
$e->getMessage()
) . PHP_EOL;

if (get_class($e) == IncorrectParametersException::class) {
$message .= PHP_EOL . 'Incorrect:' . PHP_EOL
Expand Down

0 comments on commit fd84f49

Please sign in to comment.