Completed
Push — v5 ( dc77db...3efe5a )
by Georges
03:27
created
src/phpFastCache/Core/ExtendedCacheItemPoolTrait.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function getItemsAsJsonString(array $keys = [], $option = 0, $depth = 512)
31 31
     {
32
-        $callback = function(CacheItemInterface $item){
32
+        $callback = function(CacheItemInterface $item) {
33 33
             return $item->get();
34 34
         };
35 35
         return json_encode(array_map($callback, array_values($this->getItems($keys))), $option, $depth);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function getItemsByTagsAsJsonString(array $tagNames, $option = 0, $depth = 512)
89 89
     {
90
-        $callback = function(CacheItemInterface $item){
90
+        $callback = function(CacheItemInterface $item) {
91 91
             return $item->get();
92 92
         };
93 93
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @return bool
131
+     * @return boolean|null
132 132
      */
133 133
     public function driverConnect()
134 134
     {
Please login to merge, or discard this patch.