Passed
Push — master ( 034b15...36859c )
by Caen
04:33 queued 14s
created
packages/framework/src/Foundation/Internal/YamlConfigurationRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         if ($this->hasYamlConfigFile()) {
31 31
             $data = $this->parseYamlFile();
32 32
 
33
-            if (! self::configurationContainsNamespaces($data)) {
33
+            if (!self::configurationContainsNamespaces($data)) {
34 34
                 $data = ['hyde' => $data];
35 35
             }
36 36
 
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Internal/LoadYamlEnvironmentVariables.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     protected function canInjectSiteNameEnvironmentVariable(): bool
36 36
     {
37
-        return $this->yamlHasSiteNameSet() && ! $this->alreadyHasEnvironmentVariable();
37
+        return $this->yamlHasSiteNameSet() && !$this->alreadyHasEnvironmentVariable();
38 38
     }
39 39
 
40 40
     protected function alreadyHasEnvironmentVariable(): bool
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Internal/LoadYamlConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $this->yaml = $app->make(YamlConfigurationRepository::class);
34 34
 
35 35
         if ($this->yaml->hasYamlConfigFile()) {
36
-            tap($app->make('config'), function (Repository $config): void {
36
+            tap($app->make('config'), function(Repository $config): void {
37 37
                 $this->config = $config->all();
38 38
                 $this->mergeParsedConfiguration();
39 39
             })->set($this->config);
Please login to merge, or discard this patch.