Completed
Pull Request — final (#379)
by Georges
04:06 queued 01:56
created
src/phpFastCache/Core/PathSeekerTrait.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,11 +78,11 @@
 block discarded – undo
78 78
                 return $full_path_tmp;
79 79
             }
80 80
             return $full_path;
81
-        }else{
81
+        } else{
82 82
             if (!isset($this->tmp[ $full_path_hash ]) || (!@file_exists($full_path) || !@is_writable($full_path))) {
83 83
                 if (!@file_exists($full_path)) {
84 84
                     @mkdir($full_path, $this->setChmodAuto(), true);
85
-                }else if (!@is_writable($full_path)) {
85
+                } else if (!@is_writable($full_path)) {
86 86
                     @chmod($full_path, $this->setChmodAuto());
87 87
                 }
88 88
                 if (!@is_writable($full_path)) {
Please login to merge, or discard this patch.