Passed
Push — master ( f368fd...fd4a88 )
by Caen
03:11
created
framework/src/Framework/Features/Documentation/DocumentationSearchPage.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
 
34 34
     public static function enabled(): bool
35 35
     {
36
-        return config('docs.create_search_page', true) && ! Hyde::routes()->has(self::routeKey());
36
+        return config('docs.create_search_page', true) && !Hyde::routes()->has(self::routeKey());
37 37
     }
38 38
 
39 39
     public static function generate(): string
Please login to merge, or discard this patch.
packages/framework/src/Console/ConsoleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             Commands\ChangeSourceDirectoryCommand::class,
39 39
         ]);
40 40
 
41
-        Artisan::starting(function (Artisan $artisan): void {
41
+        Artisan::starting(function(Artisan $artisan): void {
42 42
             $artisan->setName(self::logo());
43 43
         });
44 44
     }
Please login to merge, or discard this patch.
packages/framework/src/Foundation/ConsoleKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         // the default LoadConfiguration bootstrapper class with our implementation.
24 24
         // We do this by swapping out the LoadConfiguration class with our own.
25 25
 
26
-        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function (array &$array): void {
26
+        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function(array &$array): void {
27 27
             $array[\LaravelZero\Framework\Bootstrap\LoadConfiguration::class] = \Hyde\Foundation\Internal\LoadConfiguration::class;
28 28
         }));
29 29
     }
Please login to merge, or discard this patch.
packages/framework/config/torchlight.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
- /*
3
+    /*
4 4
 |--------------------------------------------------------------------------
5 5
 | Torchlight
6 6
 |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
framework/src/Framework/Features/XmlGenerators/RssFeedGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 {
25 25
     public function generate(): static
26 26
     {
27
-        MarkdownPost::getLatestPosts()->each(function (MarkdownPost $post): void {
27
+        MarkdownPost::getLatestPosts()->each(function(MarkdownPost $post): void {
28 28
             $this->addItem($post);
29 29
         });
30 30
 
Please login to merge, or discard this patch.
packages/framework/src/Framework/Factories/NavigationDataFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         return $this->isInstanceOf(MarkdownPost::class)
95 95
             || $this->searchForHiddenInFrontMatter()
96 96
             || in_array($this->routeKey, Config::getArray('hyde.navigation.exclude', ['404']))
97
-            || ! $this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden');
97
+            || !$this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden');
98 98
     }
99 99
 
100 100
     protected function makePriority(): int
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
     protected function invert(?bool $value): ?bool
197 197
     {
198
-        return $value === null ? null : ! $value;
198
+        return $value === null ? null : !$value;
199 199
     }
200 200
 
201 201
     protected function offset(?int $value, int $offset): ?int
Please login to merge, or discard this patch.
packages/framework/src/Facades/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
     protected static function validated(mixed $value, string $type, string $key): mixed
45 45
     {
46
-        if (! ("is_$type")($value)) {
46
+        if (!("is_$type")($value)) {
47 47
             throw new TypeError(sprintf('%s(): Config value %s must be of type %s, %s given', __METHOD__, $key, $type, gettype($value)));
48 48
         }
49 49
 
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Internal/LoadConfiguration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     /** Get all the configuration files for the application. */
15 15
     protected function getConfigurationFiles(Application $app): array
16 16
     {
17
-        return tap(parent::getConfigurationFiles($app), function (array &$files) use ($app): void {
17
+        return tap(parent::getConfigurationFiles($app), function(array &$files) use ($app): void {
18 18
             // Inject our custom config file which is stored in `app/config.php`.
19 19
             $files['app'] = $app->basePath().DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'config.php';
20 20
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         // If we're running in a Phar and no project config directory exists,
63 63
         // we need to adjust the path to use the bundled static Phar config file.
64 64
 
65
-        if (\Phar::running() && (! is_dir($files['app']))) {
65
+        if (\Phar::running() && (!is_dir($files['app']))) {
66 66
             $files['app'] = dirname(__DIR__, 6).DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'app.php';
67 67
         }
68 68
     }
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Kernel/Filesystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
      */
141 141
     public function vendorPath(string $path = '', string $package = 'framework'): string
142 142
     {
143
-        if (PharSupport::running() && ! PharSupport::hasVendorDirectory()) {
143
+        if (PharSupport::running() && !PharSupport::hasVendorDirectory()) {
144 144
             return PharSupport::vendorPath($path, $package);
145 145
         }
146 146
 
Please login to merge, or discard this patch.