소스 검색

[MonologBundle] Fixed CS

Christophe Coevoet 14 년 전
부모
커밋
0704bc348b
1개의 변경된 파일12개의 추가작업 그리고 12개의 파일을 삭제
  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;
+        }
+    }
 }