From 44a18371a1ac39de54fbaa70c5eb6825cc712007 Mon Sep 17 00:00:00 2001 From: Andrew M Date: Fri, 27 Dec 2013 20:23:32 +0200 Subject: [PATCH] Fix coding standards (opening brace on new line) --- cookbook/console/logging.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cookbook/console/logging.rst b/cookbook/console/logging.rst index b4c9ea9f872..0819c0c2f89 100644 --- a/cookbook/console/logging.rst +++ b/cookbook/console/logging.rst @@ -150,7 +150,8 @@ Then implement the actual listener:: $this->logger = $logger; } - public function onConsoleException(ConsoleExceptionEvent $event) { + public function onConsoleException(ConsoleExceptionEvent $event) + { $command = $event->getCommand(); $exception = $event->getException(); @@ -255,7 +256,8 @@ Then implement the actual listener:: $this->logger = $logger; } - public function onConsoleTerminate(ConsoleTerminateEvent $event) { + public function onConsoleTerminate(ConsoleTerminateEvent $event) + { $statusCode = $event->getExitCode(); $command = $event->getCommand();