@@ -30,7 +30,7 @@ |
||
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 |
@@ -34,7 +34,7 @@ |
||
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 |
@@ -33,7 +33,7 @@ |
||
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); |