Test Failed
Push — main ( adee3b...789681 )
by Sílvio
03:00
created
src/CacheStore/FileCacheStore.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -165,10 +165,10 @@
 block discarded – undo
165 165
 
166 166
 
167 167
         /**
168
-     * @param string $cacheKey
169
-     * @param string $namespace
170
-     * @return bool
171
-     */
168
+         * @param string $cacheKey
169
+         * @param string $namespace
170
+         * @return bool
171
+         */
172 172
     public function hasCache(string $cacheKey, string $namespace = '')
173 173
     {
174 174
         $cacheData = $this->getCache($cacheKey, $namespace);
Please login to merge, or discard this patch.
src/Repositories/CacheDatabaseRepository.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -98,11 +98,11 @@
 block discarded – undo
98 98
     }
99 99
 
100 100
     /**
101
-    * @param string $cacheKey
102
-    * @param int|string $ttl
103
-    * @param string $namespace
104
-    * @return bool
105
-    */
101
+     * @param string $cacheKey
102
+     * @param int|string $ttl
103
+     * @param string $namespace
104
+     * @return bool
105
+     */
106 106
     public function renew(string $cacheKey, int|string $ttl, string $namespace = '')
107 107
     {
108 108
         $currentTime = date('Y-m-d H:i:s');
Please login to merge, or discard this patch.