Completed
Branch master (cb5b41)
by Ryuichi
05:15 queued 03:07
created
Attributes/Filter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use WebStream\Annotation\Base\IRead;
8 8
 use WebStream\Annotation\Container\AnnotationContainer;
9 9
 use WebStream\Container\Container;
10
-use WebStream\Exception\Extend\AnnotationException;
11 10
 
12 11
 /**
13 12
  * Filter
Please login to merge, or discard this patch.
Attributes/Query.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use WebStream\Annotation\Base\IAnnotatable;
6 6
 use WebStream\Annotation\Base\IRead;
7 7
 use WebStream\Annotation\Base\IMethods;
8
-use WebStream\Annotation\container\AnnotationListContainer;
9 8
 use WebStream\Container\Container;
10 9
 use WebStream\Exception\Extend\DatabaseException;
11 10
 use WebStream\IO\File;
Please login to merge, or discard this patch.
Modules/ClassLoader/ClassLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
     /**
201 201
      * ファイル検索イテレータを返却する
202 202
      * @param string ディレクトリパス
203
-     * @return RecursiveIteratorIterator イテレータ
203
+     * @return \RecursiveIteratorIterator イテレータ
204 204
      */
205 205
     private function getFileSearchIterator(string $path): \RecursiveIteratorIterator
206 206
     {
Please login to merge, or discard this patch.
Modules/ClassLoader/Test/ClassLoaderTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 require_once dirname(__FILE__) . '/../Test/Providers/ClassLoaderProvider.php';
10 10
 require_once dirname(__FILE__) . '/../Test/Fixtures/DummyLogger.php';
11 11
 
12
-use WebStream\ClassLoader\ClassLoader;
13
-use WebStream\ClassLoader\Test\Providers\ClassLoaderProvider;
12
+use WebStream\ClassLoader\ClassLoader;
13
+use WebStream\ClassLoader\Test\Providers\ClassLoaderProvider;
14 14
 use WebStream\ClassLoader\Test\Fixtures\DummyLogger;
15 15
 
16 16
 /**
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/Exception/Delegate/ExceptionDelegator.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\Exception\Delegate;
3 3
 
4 4
 use WebStream\DI\Injector;
5
-use WebStream\Exception\SystemException;
6 5
 use WebStream\Exception\DelegateException;
7 6
 
8 7
 /**
Please login to merge, or discard this patch.
Modules/Exception/Extend/ClassNotFoundException.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/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.