Skip to content

Commit d26a9e5

Browse files
committed
Merge pull request symfony#3392 from ifdattic/fix-coding-standards
Fix coding standards (opening brace on new line)
2 parents ac4af21 + 44a1837 commit d26a9e5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cookbook/console/logging.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ Then implement the actual listener::
150150
$this->logger = $logger;
151151
}
152152

153-
public function onConsoleException(ConsoleExceptionEvent $event) {
153+
public function onConsoleException(ConsoleExceptionEvent $event)
154+
{
154155
$command = $event->getCommand();
155156
$exception = $event->getException();
156157

@@ -255,7 +256,8 @@ Then implement the actual listener::
255256
$this->logger = $logger;
256257
}
257258

258-
public function onConsoleTerminate(ConsoleTerminateEvent $event) {
259+
public function onConsoleTerminate(ConsoleTerminateEvent $event)
260+
{
259261
$statusCode = $event->getExitCode();
260262
$command = $event->getCommand();
261263

0 commit comments

Comments
 (0)