Completed
Push — develop ( 20ddea...c97899 )
by Chris
04:22
created
src/Cloudflare.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@
 block discarded – undo
59 59
         $configDist = $config.'.dist';
60 60
         $dir = $_SERVER['DOCUMENT_ROOT'];
61 61
 
62
-        if (@file_exists($dir . $config)) {
62
+        if (@file_exists($dir.$config)) {
63 63
             $load = $config;
64
-        } elseif (@file_exists($dir . $configDist)) {
64
+        } elseif (@file_exists($dir.$configDist)) {
65 65
             $load = $configDist;
66 66
         } else {
67 67
             throw new \Exception('Unable to load either "'.$config.'" or "'.$configDist.'"', 1);
Please login to merge, or discard this patch.