Passed
Push — master ( 5d2e19...a9e365 )
by Paul
02:21
created
src/Config.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,9 @@
 block discarded – undo
65 65
 			trailingslashit( dirname( ABSPATH )),
66 66
 		]);
67 67
 		foreach( (array) $configLocations as $location ) {
68
-			if( !file_exists( $location . $configYaml ))continue;
68
+			if( !file_exists( $location . $configYaml )) {
69
+				continue;
70
+			}
69 71
 			return $location . $configYaml;
70 72
 		}
71 73
 		return $this->app->path( 'defaults.yml' );
Please login to merge, or discard this patch.