Skip to content

Commit

Permalink
code fixes as mentioned by @dirkluijk
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Mar 26, 2014
1 parent 83adc87 commit 610eb6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/console/logger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ You can rely on the logger to use this dependency inside a command::
{
$logger = new ConsoleLogger($output);

$myDependency = MyDependency($logger);
$myDependency = new MyDependency($logger);
$myDependency->doStuff();
}
}
Expand Down Expand Up @@ -99,7 +99,7 @@ level. This behavior is configurable through the third parameter of the
constructor::

// ...
private $formatLevelMap = array(
$formatLevelMap = array(
LogLevel::CRITICAL => self::INFO,
LogLevel::DEBUG => self::ERROR,
);
Expand Down

0 comments on commit 610eb6b

Please sign in to comment.