Passed
Push — master ( 2890da...33c328 )
by Terry
17:39
created
src/SimpleCache/Driver/Apc.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     protected function doGet(string $key): array
65 65
     {
66 66
         $success = false;
67
-		$content = apc_fetch($this->getKeyName($key), $success);
67
+        $content = apc_fetch($this->getKeyName($key), $success);
68 68
 
69 69
         if (empty($content) || !$success) {
70 70
             return [];
Please login to merge, or discard this patch.