Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-mabe committed Jan 19, 2013
1 parent a7920c0 commit 17eaf80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/Zend/Log/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Logger implements LoggerInterface
E_RECOVERABLE_ERROR => self::ERR,
E_STRICT => self::DEBUG,
E_DEPRECATED => self::DEBUG,
E_USER_DEPRECATED => self::DEBUG
E_USER_DEPRECATED => self::DEBUG,
);

/**
Expand All @@ -67,7 +67,7 @@ class Logger implements LoggerInterface
* Registered exception handler
*
* @var bool
*/
*/
protected static $registeredExceptionHandler = false;

/**
Expand Down Expand Up @@ -534,7 +534,7 @@ public static function registerErrorHandler(Logger $logger, $continueNativeHandl
'errno' => $level,
'file' => $file,
'line' => $line,
'context' => $context
'context' => $context,
));
}

Expand Down

0 comments on commit 17eaf80

Please sign in to comment.