Completed
Push — master ( ef3170...06d07c )
by Franck
30:04 queued 15:00
created
src/Factory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @see self::getPool
39
-     * @return TaggablePool
39
+     * @return PsrSimpleCache\Pool
40 40
      */
41 41
     public static function getTaggablePool($mix, array $options=array())
42 42
     {
Please login to merge, or discard this patch.
src/PsrSimpleCache/TaggablePool.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      * Sets this pool tags.
115 115
      *
116 116
      * @param  array|null   $tags
117
-     * @return TaggableItem The invoked object.
117
+     * @return TaggablePool The invoked object.
118 118
      */
119 119
     public function setTags(array $tags=null)
120 120
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -13,10 +13,7 @@
 block discarded – undo
13 13
 namespace Apix\SimpleCache\PsrSimpleCache;
14 14
 
15 15
 use Apix\Cache\Adapter as CacheAdapter;
16
-use Psr\Cache\CacheItemInterface as ItemInterface;
17 16
 use Psr\Cache\CacheItemPoolInterface as CacheItemPool;
18
-use Psr\Cache\InvalidArgumentException as CacheInvalidArgumentException;
19
-
20 17
 use Apix\Cache\PsrCache\Item as CacheItem;
21 18
 
22 19
 class TaggablePool extends Pool
Please login to merge, or discard this patch.