Completed
Branch master (b589b0)
by Ryuichi
07:55
created
Logger.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -209,6 +209,8 @@  discard block
 block discarded – undo
209 209
      * @param string ログレベル文字列
210 210
      * @param string 出力文字列
211 211
      * @param array<mixed> 埋め込み値リスト
212
+     * @param integer $level
213
+     * @param string $msg
212 214
      */
213 215
     public function write($level, $msg, $context = null)
214 216
     {
@@ -305,6 +307,8 @@  discard block
 block discarded – undo
305 307
      * ローテートを実行する
306 308
      * @param integer 作成日時のUnixTime
307 309
      * @param integer 現在日時のUnixTime
310
+     * @param integer $from
311
+     * @param integer $to
308 312
      */
309 313
     private function runRotate($from, $to)
310 314
     {
Please login to merge, or discard this patch.
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.
LoggerFormatter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * フォーマット済みメッセージを返却する
35 35
      * @param  string メッセージ
36 36
      * @param  string ログレベル
37
-     * @return フォーマット済みメッセージ
37
+     * @return string
38 38
      */
39 39
     public function getFormattedMessage($message, $logLevel)
40 40
     {
Please login to merge, or discard this patch.
Modules/Container/Container.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@
 block discarded – undo
72 72
 
73 73
     /**
74 74
      * キーの値を設定する
75
-     * @param  string $name      メソッド名
76
-     * @param  array  $arguments 引数リスト
75
+     * @param string $key
77 76
      * @return void
78 77
      */
79 78
     public function set($key, $value)
Please login to merge, or discard this patch.
Modules/IO/File.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * constructor
33
-     * @param string $filepath ファイルパス
33
+     * @param string $filePath ファイルパス
34 34
      */
35 35
     public function __construct(string $filePath)
36 36
     {
Please login to merge, or discard this patch.
Test/Modules/Container.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@
 block discarded – undo
72 72
 
73 73
     /**
74 74
      * キーの値を設定する
75
-     * @param  string $name      メソッド名
76
-     * @param  array  $arguments 引数リスト
75
+     * @param string $key
77 76
      * @return void
78 77
      */
79 78
     public function set($key, $value)
Please login to merge, or discard this patch.