Completed
Push — feature/0.7.0 ( 79c386...7f3169 )
by Ryuichi
03:02
created
WebStream/Log/Logger.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     /**
88 88
      * インスタンスを返却する
89
-     * @return WebStream\Module\Logger ロガーインスタンス
89
+     * @return Logger ロガーインスタンス
90 90
      */
91 91
     public static function getInstance()
92 92
     {
@@ -193,6 +193,7 @@  discard block
 block discarded – undo
193 193
      * @param string ログレベル文字列
194 194
      * @param string 出力文字列
195 195
      * @param array<mixed> 埋め込み値リスト
196
+     * @param string $msg
196 197
      */
197 198
     public function write($level, $msg, $context = null)
198 199
     {
@@ -288,6 +289,8 @@  discard block
 block discarded – undo
288 289
      * ローテートを実行する
289 290
      * @param integer 作成日時のUnixTime
290 291
      * @param integer 現在日時のUnixTime
292
+     * @param integer $from
293
+     * @param integer $to
291 294
      */
292 295
     private function runRotate($from, $to)
293 296
     {
Please login to merge, or discard this patch.
WebStream/Log/LoggerConfigurationManager.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -183,6 +183,7 @@
 block discarded – undo
183 183
     /**
184 184
      * ログローテートサイクルを時間に変換
185 185
      * @param string ローテートサイクル
186
+     * @param string $cycle
186 187
      * @return int ローテート時間
187 188
      */
188 189
     private function cycle2value($cycle)
Please login to merge, or discard this patch.
WebStream/Log/LoggerFormatter.php 1 patch
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.