Browse Source

[MonologBundle] Fixed CS

Christophe Coevoet 14 years ago
parent
commit
0704bc348b
1 changed files with 12 additions and 12 deletions
  1. 12 12
      src/Symfony/Bundle/MonologBundle/Logger/FirePHPHandler.php

+ 12 - 12
src/Symfony/Bundle/MonologBundle/Logger/FirePHPHandler.php

@@ -33,18 +33,6 @@ class FirePHPHandler extends BaseFirePHPHandler
      */
     private $response;
 
-    /**
-     * {@inheritDoc}
-     */
-    protected function sendHeader($header, $content)
-    {
-        if ($this->response) {
-            $this->response->headers->set($header, $content);
-        } else {
-            $this->headers[$header] = $content;
-        }
-    }
-
     /**
      * Adds the headers to the response once it's created
      */
@@ -60,4 +48,16 @@ class FirePHPHandler extends BaseFirePHPHandler
         }
         $this->headers = array();
     }
+
+    /**
+     * {@inheritDoc}
+     */
+    protected function sendHeader($header, $content)
+    {
+        if ($this->response) {
+            $this->response->headers->set($header, $content);
+        } else {
+            $this->headers[$header] = $content;
+        }
+    }
 }