From fd84f494287057793e542802ef12efcada352f5d Mon Sep 17 00:00:00 2001 From: Xenofon Spafaridis Date: Tue, 19 Jan 2016 21:44:10 +0200 Subject: [PATCH] Fix lint errors --- src/Binary.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Binary.php b/src/Binary.php index e6ebda1..493364a 100644 --- a/src/Binary.php +++ b/src/Binary.php @@ -125,7 +125,7 @@ public function invoke() try { $testParserCollection = $this->getTestParserCollection(); - } catch(\Exception $e) { + } catch (\Exception $e) { echo $e->getMessage(); return 1; } @@ -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