Completed
Branch master (106124)
by Ryuichi
02:06
created
ClassLoader.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     /**
187 187
      * ファイル検索イテレータを返却する
188 188
      * @param string ディレクトリパス
189
-     * @return RecursiveIteratorIterator イテレータ
189
+     * @return \RecursiveIteratorIterator イテレータ
190 190
      */
191 191
     private function getFileSearchIterator(string $path): \RecursiveIteratorIterator
192 192
     {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,9 +109,9 @@
 block discarded – undo
109 109
     }
110 110
 
111 111
     /**
112
-    * ロード可能なクラスを返却する
113
-    * @param string クラス名(フルパス指定の場合はクラスパス)
114
-    * @return array<string> ロード可能クラス
112
+     * ロード可能なクラスを返却する
113
+     * @param string クラス名(フルパス指定の場合はクラスパス)
114
+     * @return array<string> ロード可能クラス
115 115
      */
116 116
     private function loadClass(string $className): array
117 117
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
             $className = str_replace("\\", DIRECTORY_SEPARATOR, $className);
124 124
         }
125 125
 
126
-        $search = function ($dirPath, $searchFilePath) use ($logger) {
126
+        $search = function($dirPath, $searchFilePath) use ($logger) {
127 127
             $includeList = [];
128 128
             $dir = new File($dirPath);
129 129
             if (!$dir->isDirectory()) {
Please login to merge, or discard this patch.
Modules/DI/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.
Modules/IO/StringInputStream.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace WebStream\IO;
3 3
 
4 4
 use WebStream\Exception\Extend\InvalidArgumentException;
5
-use WebStream\Exception\Extend\IOException;
6 5
 
7 6
 /**
8 7
  * StringInputStream
Please login to merge, or discard this patch.
Test/ClassLoaderTest.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 require_once dirname(__FILE__) . '/../Test/Providers/ClassLoaderProvider.php';
8 8
 require_once dirname(__FILE__) . '/../Test/Fixtures/DummyLogger.php';
9 9
 
10
-use WebStream\ClassLoader\ClassLoader;
11
-use WebStream\ClassLoader\Test\Providers\ClassLoaderProvider;
10
+use WebStream\ClassLoader\ClassLoader;
11
+use WebStream\ClassLoader\Test\Providers\ClassLoaderProvider;
12 12
 use WebStream\ClassLoader\Test\Fixtures\DummyLogger;
13 13
 
14 14
 /**
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     public function okFilteredImportTest($rootDir, $className, $ignoreClassName)
82 82
     {
83 83
         $classLoader = new ClassLoader($rootDir);
84
-        $this->assertTrue($classLoader->import($className, function ($filepath) use ($ignoreClassName) {
84
+        $this->assertTrue($classLoader->import($className, function($filepath) use ($ignoreClassName) {
85 85
             return $filepath === $ignoreClassName;
86 86
         }));
87 87
         $this->assertTrue(class_exists(\WebStream\ClassLoader\Test\Fixtures\ImportFixture4::class));
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     public function okFilteredImportAllTest($rootDir, $dirName, $ignoreClassName)
97 97
     {
98 98
         $classLoader = new ClassLoader($rootDir);
99
-        $this->assertTrue($classLoader->importAll($dirName, function ($filepath) use ($ignoreClassName) {
99
+        $this->assertTrue($classLoader->importAll($dirName, function($filepath) use ($ignoreClassName) {
100 100
             return $filepath === $ignoreClassName;
101 101
         }));
102 102
         $this->assertTrue(class_exists(\WebStream\ClassLoader\Test\Fixtures\ImportFixture5::class));
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     {
125 125
         $classLoader = new ClassLoader($rootDir);
126 126
         $classLoader->inject('logger', new DummyLogger());
127
-        $classLoader->import($className, function ($filepath) use ($ignoreClassName) {
127
+        $classLoader->import($className, function($filepath) use ($ignoreClassName) {
128 128
             return false;
129 129
         });
130 130
         $this->expectOutputString('');
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     {
141 141
         $classLoader = new ClassLoader($rootDir);
142 142
         $classLoader->inject('logger', new DummyLogger());
143
-        $classLoader->importAll($dirName, function ($filepath) use ($ignoreClassName) {
143
+        $classLoader->importAll($dirName, function($filepath) use ($ignoreClassName) {
144 144
             return false;
145 145
         });
146 146
         $this->expectOutputString('');
Please login to merge, or discard this patch.
Modules/IO/Test/Providers/FileProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,21 +14,21 @@  discard block
 block discarded – undo
14 14
     public function fileProvider()
15 15
     {
16 16
         return [
17
-            [new File(dirname(__FILE__)  . "/../Fixtures/file-test1.txt")]
17
+            [new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt")]
18 18
         ];
19 19
     }
20 20
 
21 21
     public function directoryProvider()
22 22
     {
23 23
         return [
24
-            [new File(dirname(__FILE__)  . "/../Fixtures/file-test/")]
24
+            [new File(dirname(__FILE__) . "/../Fixtures/file-test/")]
25 25
         ];
26 26
     }
27 27
 
28 28
     public function fileLinkProvider()
29 29
     {
30 30
         return [
31
-            [new File(dirname(__FILE__)  . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link"]
31
+            [new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link"]
32 32
         ];
33 33
     }
34 34
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function renameFailureProvider()
50 50
     {
51 51
         return [
52
-            [new File(dirname(__FILE__)  . "/../Fixtures/file-test/file-test2.txt")]
52
+            [new File(dirname(__FILE__) . "/../Fixtures/file-test/file-test2.txt")]
53 53
         ];
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
Modules/IO/Test/Providers/InputStreamReaderProvider.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@  discard block
 block discarded – undo
15 15
     public function readCharProvider()
16 16
     {
17 17
         return [
18
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt"), "a", 1],
19
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt"), "a\n", 100], // over eof
20
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test2.txt"), "あ", 3],
21
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test2.txt"), "あ\n", 100], // over eof
18
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt"), "a", 1],
19
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt"), "a\n", 100], // over eof
20
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test2.txt"), "あ", 3],
21
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test2.txt"), "あ\n", 100], // over eof
22 22
             [new StringInputStream("a"), "a", 1],
23 23
             [new StringInputStream("a"), "a", 100], // over eof
24 24
             [new StringInputStream("あ"), "あ", 3],
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function readLineProvider()
30 30
     {
31 31
         return [
32
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test3.txt"), "test1", "test2"],
32
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test3.txt"), "test1", "test2"],
33 33
             [new StringInputStream("test1\ntest2\n"), "test1", "test2"]
34 34
         ];
35 35
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function closeProvider()
38 38
     {
39 39
         return [
40
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt")],
40
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt")],
41 41
             [new StringInputStream("a\n")]
42 42
         ];
43 43
     }
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
     public function skipProvider()
46 46
     {
47 47
         return [
48
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test4.txt"), "a", 0],
49
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test4.txt"), "b", 1],
50
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test4.txt"), "d", 3],
51
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test4.txt"), "f", 5],
52
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test4.txt"), "\n", 9],
53
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test4.txt"), "", 10],
48
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test4.txt"), "a", 0],
49
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test4.txt"), "b", 1],
50
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test4.txt"), "d", 3],
51
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test4.txt"), "f", 5],
52
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test4.txt"), "\n", 9],
53
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test4.txt"), "", 10],
54 54
             [new StringInputStream("abcdefghi"), "a", 0],
55 55
             [new StringInputStream("abcdefghi"), "b", 1],
56 56
             [new StringInputStream("abcdefghi"), "d", 3],
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
     public function overSkipAndReadProvider()
64 64
     {
65 65
         return [
66
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test5.txt"), 4],
67
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test6.txt"), 100],
66
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test5.txt"), 4],
67
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test6.txt"), 100],
68 68
             [new StringInputStream("abc\n"), 4],
69 69
             [new StringInputStream("abcde\nあいうえお"), 100]
70 70
         ];
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     public function frontSkipProvider()
74 74
     {
75 75
         return [
76
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test8.txt"), 3, -1, "c"],
76
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test8.txt"), 3, -1, "c"],
77 77
             [new StringInputStream("abcde\n"), 3, -1, "c"]
78 78
         ];
79 79
     }
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
     public function overFrontSkipProvider()
82 82
     {
83 83
         return [
84
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt"), -1],
85
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt"), -100],
84
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt"), -1],
85
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt"), -100],
86 86
             [new StringInputStream("a\n"), -1],
87 87
             [new StringInputStream("a\n"), -100]
88 88
         ];
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function resetProvider()
92 92
     {
93 93
         return [
94
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt"), 1, "a"],
94
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt"), 1, "a"],
95 95
             [new StringInputStream("a\n"), 1, "a"]
96 96
         ];
97 97
     }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     public function markAndResetProvider()
100 100
     {
101 101
         return [
102
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test7.txt"), 3, "d"],
102
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test7.txt"), 3, "d"],
103 103
             [new StringInputStream("abcde\n"), 3, "d"]
104 104
         ];
105 105
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     public function invalidLengthProvider()
108 108
     {
109 109
         return [
110
-            [new FileInputStream(dirname(__FILE__)  . "/../Fixtures/inputstreamreader-test1.txt"), "a"],
110
+            [new FileInputStream(dirname(__FILE__) . "/../Fixtures/inputstreamreader-test1.txt"), "a"],
111 111
             [new StringInputStream("a\n"), "a"]
112 112
         ];
113 113
     }
Please login to merge, or discard this patch.
Modules/IO/Test/Providers/FileReaderProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function readProvider()
13 13
     {
14 14
         return [
15
-            [dirname(__FILE__)  . "/../Fixtures/filereader-test1.txt", "test1\n" . "test2\n"]
15
+            [dirname(__FILE__) . "/../Fixtures/filereader-test1.txt", "test1\n" . "test2\n"]
16 16
         ];
17 17
     }
18 18
 }
Please login to merge, or discard this patch.