Completed
Push — master ( 9ea097...99bcd1 )
by Nate
04:39 queued 01:06
created
src/events/RegisterCachePools.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @param $pool
67
+     * @param PoolInterface $pool
68 68
      * @return null
69 69
      */
70 70
     protected function resolvePool($pool)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,9 +9,9 @@
 block discarded – undo
9 9
 namespace flipbox\craft\psr6\events;
10 10
 
11 11
 use Craft;
12
+use Stash\Interfaces\PoolInterface;
12 13
 use craft\helpers\ArrayHelper;
13 14
 use craft\helpers\Json;
14
-use Stash\Interfaces\PoolInterface;
15 15
 use yii\base\Event;
16 16
 
17 17
 /**
Please login to merge, or discard this patch.
src/Cache.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
     /**
160 160
      * @param array $config
161
-     * @return object|DriverInterface
161
+     * @return DriverInterface
162 162
      * @throws \yii\base\InvalidConfigException
163 163
      */
164 164
     private function createDriver(array $config): DriverInterface
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     }
208 208
 
209 209
     /**
210
-     * @param null $default
210
+     * @param boolean $default
211 211
      * @return null|object
212 212
      */
213 213
     private function applicationLogger($default = null)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
 
11 11
 use Craft;
12 12
 use Flipbox\Stash\Pool;
13
-use flipbox\craft\psr6\events\RegisterCachePools;
14 13
 use Psr\Log\LoggerInterface;
15 14
 use Stash\Driver\BlackHole;
16 15
 use Stash\Driver\FileSystem;
17 16
 use Stash\Interfaces\DriverInterface;
18 17
 use Stash\Interfaces\PoolInterface;
18
+use flipbox\craft\psr6\events\RegisterCachePools;
19 19
 use yii\base\Component;
20 20
 use yii\caching\FileCache;
21 21
 use yii\log\Logger;
Please login to merge, or discard this patch.