Completed
Push — feature/0.7.0 ( 79c386...7f3169 )
by Ryuichi
03:02
created
WebStream/Log/LoggerFormatter.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      * フォーマット済みメッセージを返却する
36 36
      * @param  string メッセージ
37 37
      * @param  string ログレベル
38
-     * @return フォーマット済みメッセージ
38
+     * @return string
39 39
      */
40 40
     public function getFormattedMessage($message, $logLevel)
41 41
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         // メッセージ
51 51
         $formattedMessage = preg_replace('/%m/', $message, $formattedMessage);
52 52
 
53
-        return $formattedMessage . "\n";
53
+        return $formattedMessage."\n";
54 54
     }
55 55
 
56 56
     /**
Please login to merge, or discard this patch.
WebStream/Log/Outputter/BrowserOutputter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $sapi = php_sapi_name();
34 34
         if (array_key_exists($sapi, $this->sapis) && $this->sapis[$sapi] === 'http') {
35
-            echo $text . "<br>";
35
+            echo $text."<br>";
36 36
         }
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
WebStream/Log/Outputter/ConsoleOutputter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $sapi = php_sapi_name();
34 34
         if (array_key_exists($sapi, $this->sapis) && $this->sapis[$sapi] === 'console') {
35
-            echo $text . PHP_EOL;
35
+            echo $text.PHP_EOL;
36 36
         }
37 37
     }
38 38
 }
Please login to merge, or discard this patch.