Passed
Branch master (432243)
by Ryuichi
37:40 queued 35:17
created
Modules/Exception/Extend/InvalidRequestException.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * constructor
16
+     * @param string $message
16 17
      */
17 18
     public function __construct($message = null)
18 19
     {
Please login to merge, or discard this patch.
Modules/Exception/Extend/IOException.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * constructor
16
+     * @param string $message
16 17
      */
17 18
     public function __construct($message = null)
18 19
     {
Please login to merge, or discard this patch.
Modules/Exception/Extend/ValidateException.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * constructor
16
+     * @param string $message
16 17
      */
17 18
     public function __construct($message = null)
18 19
     {
Please login to merge, or discard this patch.
Modules/ClassLoader/ClassLoader.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * クラスをロードする
40 40
      * @param mixed クラスまたはクラスリスト
41
+     * @param string $target
41 42
      * @return array<string> ロード済みクラスリスト
42 43
      */
43 44
     public function load($target): array
@@ -49,6 +50,7 @@  discard block
 block discarded – undo
49 50
      * ファイルをインポートする
50 51
      * @param string ファイルパス
51 52
      * @param callable フィルタリング無名関数 trueを返すとインポート
53
+     * @param string $filepath
52 54
      * @return bool インポート結果
53 55
      */
54 56
     public function import($filepath, callable $filter = null): bool
@@ -105,6 +107,7 @@  discard block
 block discarded – undo
105 107
     /**
106 108
      * 名前空間リストを返却する
107 109
      * @param string ファイル名
110
+     * @param string $fileName
108 111
      * @return array<string> 名前空間リスト
109 112
      */
110 113
     public function getNamespaces($fileName)
@@ -200,7 +203,7 @@  discard block
 block discarded – undo
200 203
     /**
201 204
      * ファイル検索イテレータを返却する
202 205
      * @param string ディレクトリパス
203
-     * @return RecursiveIteratorIterator イテレータ
206
+     * @return \RecursiveIteratorIterator イテレータ
204 207
      */
205 208
     private function getFileSearchIterator(string $path): \RecursiveIteratorIterator
206 209
     {
Please login to merge, or discard this patch.