Completed
Pull Request — master (#37)
by Matt
46s
created
src/Locator/ConfigLocator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
         $configurationFile = static::CONFIG_FILENAME;
22 22
         if (is_dir($configOption)) {
23
-            $configurationFile = $configOption . DIRECTORY_SEPARATOR . $configurationFile;
23
+            $configurationFile = $configOption.DIRECTORY_SEPARATOR.$configurationFile;
24 24
         }
25 25
         if (file_exists($configOption) && is_file($configOption)) {
26 26
             return realpath($configOption);
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
         if (file_exists($configurationFile)) {
29 29
             return realpath($configurationFile);
30 30
         }
31
-        if (file_exists($configurationFile . '.dist')) {
32
-            return realpath($configurationFile . '.dist');
31
+        if (file_exists($configurationFile.'.dist')) {
32
+            return realpath($configurationFile.'.dist');
33 33
         }
34 34
 
35 35
         return null;
Please login to merge, or discard this patch.