Completed
Push — master ( 7489fe...b04539 )
by Chris
02:37
created
src/Cloudflare.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     private function loadConfig()
23 23
     {
24 24
         $config = 'Cloudflare.yml';
25
-        $configDist = $config.'.dist';
25
+        $configDist = $config . '.dist';
26 26
         $dir = $_SERVER['DOCUMENT_ROOT'];
27 27
 
28 28
         if (@file_exists($dir . $config)) {
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         } elseif (@file_exists($dir . $configDist)) {
31 31
             $load = $configDist;
32 32
         } else {
33
-            die('Unable to load either "'.$config.'" or "'.$configDist.'"');
33
+            die('Unable to load either "' . $config . '" or "' . $configDist . '"');
34 34
         }
35 35
 
36 36
         $config = Yaml::parse(file_get_contents($load));
Please login to merge, or discard this patch.