Completed
Push — master ( ff8817...b10870 )
by Ryuichi
22:30 queued 20:03
created
Driver/Redis.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace WebStream\Cache\Driver;
3 3
 
4
-use WebStream\DI\Injector;
5 4
 use WebStream\Module\Container;
6 5
 
7 6
 /**
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/DI/Injector.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -18,6 +18,8 @@
 block discarded – undo
18 18
      * オブジェクトを注入する
19 19
      * @param string プロパティ名
20 20
      * @param mixed オブジェクト
21
+     * @param string $name
22
+     * @param string $object
21 23
      * @return Injector
22 24
      */
23 25
     public function inject($name, $object)
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.
Driver/Apcu.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace WebStream\Cache\Driver;
3 3
 
4
-use WebStream\DI\Injector;
5 4
 use WebStream\Module\Container;
6 5
 
7 6
 /**
Please login to merge, or discard this patch.
Driver/TemporaryFile.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace WebStream\Cache\Driver;
3 3
 
4
-use WebStream\DI\Injector;
5 4
 use WebStream\Module\Container;
6 5
 
7 6
 /**
Please login to merge, or discard this patch.