You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by gr...@apache.org on 2009/05/04 14:39:01 UTC

svn commit: r771288 - /incubator/log4php/trunk/src/main/php/layouts/LoggerLayoutSimple.php

Author: grobmeier
Date: Mon May  4 12:39:01 2009
New Revision: 771288

URL: http://svn.apache.org/viewvc?rev=771288&view=rev
Log:
fixed bracket style

Modified:
    incubator/log4php/trunk/src/main/php/layouts/LoggerLayoutSimple.php

Modified: incubator/log4php/trunk/src/main/php/layouts/LoggerLayoutSimple.php
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/layouts/LoggerLayoutSimple.php?rev=771288&r1=771287&r2=771288&view=diff
==============================================================================
--- incubator/log4php/trunk/src/main/php/layouts/LoggerLayoutSimple.php (original)
+++ incubator/log4php/trunk/src/main/php/layouts/LoggerLayoutSimple.php Mon May  4 12:39:01 2009
@@ -33,17 +33,14 @@
  * @subpackage layouts
  */  
 class LoggerLayoutSimple extends LoggerLayout {
-    
     /**
      * Constructor
      */
-    function LoggerLayoutSimple()
-    {
+    function LoggerLayoutSimple() {
         return;
     }
 
-    function activateOptions() 
-    {
+    function activateOptions() {
         return;
     }
 
@@ -56,8 +53,7 @@
      * @param LoggerLoggingEvent $event
      * @return string
      */
-    function format($event)
-    {
+    function format($event) {
         $level = $event->getLevel();
         return $level->toString() . ' - ' . $event->getRenderedMessage(). PHP_EOL;
     }