Completed
Push — master ( 200ed5...e61983 )
by Ryuichi
06:44
created
LoggerConfigurationManager.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -185,6 +185,7 @@
 block discarded – undo
185 185
     /**
186 186
      * ログローテートサイクルを時間に変換
187 187
      * @param string ローテートサイクル
188
+     * @param string $cycle
188 189
      * @return int ローテート時間
189 190
      * @throws LoggerException
190 191
      */
Please login to merge, or discard this patch.
Logger.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
     /**
123 123
      * インスタンスを返却する
124
-     * @return WebStream\Module\Logger ロガーインスタンス
124
+     * @return Logger ロガーインスタンス
125 125
      */
126 126
     public static function getInstance()
127 127
     {
@@ -207,6 +207,8 @@  discard block
 block discarded – undo
207 207
      * @param string ログレベル文字列
208 208
      * @param string 出力文字列
209 209
      * @param array<mixed> 埋め込み値リスト
210
+     * @param integer $level
211
+     * @param string $msg
210 212
      */
211 213
     public function write($level, $msg, $context = null)
212 214
     {
@@ -303,6 +305,8 @@  discard block
 block discarded – undo
303 305
      * ローテートを実行する
304 306
      * @param integer 作成日時のUnixTime
305 307
      * @param integer 現在日時のUnixTime
308
+     * @param integer $from
309
+     * @param integer $to
306 310
      */
307 311
     private function runRotate($from, $to)
308 312
     {
Please login to merge, or discard this patch.