Passed
Push — master ( b7dddf...303190 )
by Caen
03:32 queued 13s
created
packages/framework/src/Framework/Factories/NavigationDataFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         return $this->isInstanceOf(MarkdownPost::class)
94 94
             || $this->searchForHiddenInFrontMatter()
95 95
             || in_array($this->routeKey, config('hyde.navigation.exclude', ['404']))
96
-            || ! $this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden');
96
+            || !$this->isInstanceOf(DocumentationPage::class) && $this->pageIsInSubdirectory() && ($this->getSubdirectoryConfiguration() === 'hidden');
97 97
     }
98 98
 
99 99
     protected function makePriority(): int
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 
195 195
     protected function invert(?bool $value): ?bool
196 196
     {
197
-        return $value === null ? null : ! $value;
197
+        return $value === null ? null : !$value;
198 198
     }
199 199
 
200 200
     protected function offset(?int $value, int $offset): ?int
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/ChangeSourceDirectoryCommand.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
             throw new InvalidArgumentException('A file already exists at this path!');
95 95
         }
96 96
 
97
-        if (Filesystem::isDirectory($name) && ! Filesystem::isEmptyDirectory($name)) {
97
+        if (Filesystem::isDirectory($name) && !Filesystem::isEmptyDirectory($name)) {
98 98
             // If any of the subdirectories we want to move already exist, we need to abort as we don't want to overwrite any existing files
99 99
             // The reason we check these individually is mainly so that the change can be reverted (by setting the $name to '/')
100 100
             foreach ($this->getPageDirectories() as $directory) {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
     protected function directoryContainsFiles(string $subdirectory): bool
115 115
     {
116
-        return Filesystem::isDirectory($subdirectory) && ! Filesystem::isEmptyDirectory($subdirectory);
116
+        return Filesystem::isDirectory($subdirectory) && !Filesystem::isEmptyDirectory($subdirectory);
117 117
     }
118 118
 
119 119
     protected function updateConfigurationFile(string $newDirectoryName, string $currentDirectoryName): void
Please login to merge, or discard this patch.
packages/framework/src/Framework/Concerns/InteractsWithDirectories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public static function needsDirectory(string $directory): void
20 20
     {
21
-        if (! Filesystem::exists($directory)) {
21
+        if (!Filesystem::exists($directory)) {
22 22
             Filesystem::makeDirectory($directory, recursive: true);
23 23
         }
24 24
     }
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/PublishHomepageCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $selected = $this->parseSelection();
58 58
 
59
-        if (! $this->canExistingFileBeOverwritten()) {
59
+        if (!$this->canExistingFileBeOverwritten()) {
60 60
             $this->error('A modified index.blade.php file already exists. Use --force to overwrite.');
61 61
 
62 62
             return 409;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         Artisan::call('vendor:publish', [
68 68
             '--tag' => $this->options[$selected]['group'] ?? $selected,
69 69
             '--force' => true, // Todo add force state dynamically depending on existing file state
70
-        ], ! $tagExists ? $this->output : null);
70
+        ], !$tagExists ? $this->output : null);
71 71
 
72 72
         if ($tagExists) {
73 73
             $this->infoComment("Published page [$selected]");
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     protected function formatPublishableChoices(): array
96 96
     {
97
-        return $this->getTemplateOptions()->map(function (array $option, string $key): string {
97
+        return $this->getTemplateOptions()->map(function(array $option, string $key): string {
98 98
             return  "<comment>$key</comment>: {$option['description']}";
99 99
         })->values()->toArray();
100 100
     }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             return true;
116 116
         }
117 117
 
118
-        if (! file_exists(Hyde::getBladePagePath('index.blade.php'))) {
118
+        if (!file_exists(Hyde::getBladePagePath('index.blade.php'))) {
119 119
             return true;
120 120
         }
121 121
 
Please login to merge, or discard this patch.
framework/src/Framework/Concerns/Internal/ForwardsIlluminateFilesystem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     protected static function qualifyArguments(array $parameterNames, array $arguments): Collection
88 88
     {
89
-        return collect($arguments)->mapWithKeys(function (string|array|int|bool $argumentValue, int|string $key) use ($parameterNames): string|array|int|bool {
89
+        return collect($arguments)->mapWithKeys(function(string|array|int|bool $argumentValue, int|string $key) use ($parameterNames): string|array|int|bool {
90 90
             $argumentsToQualify = [
91 91
                 'path', 'paths', 'file', 'target', 'directory', 'destination', 'firstFile', 'secondFile',
92 92
                 'pattern', 'link', 'from', 'to',
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     protected static function qualifyPathArgument(array|string $path): string|array
109 109
     {
110 110
         return is_array($path)
111
-            ? array_map(fn (string $path): string => self::qualifyPathArgument($path), $path)
111
+            ? array_map(fn (string $path) : string => self::qualifyPathArgument($path), $path)
112 112
             : self::absolutePath($path);
113 113
     }
114 114
 }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Services/BuildService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     public function compileStaticPages(): void
43 43
     {
44
-        collect($this->getPageTypes())->each(function (string $pageClass): void {
44
+        collect($this->getPageTypes())->each(function(string $pageClass): void {
45 45
             $this->compilePagesForClass($pageClass);
46 46
         });
47 47
     }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         $this->needsDirectory(Hyde::siteMediaPath());
64 64
 
65 65
         $this->comment('Transferring Media Assets...');
66
-        $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function (string $filepath): void {
66
+        $this->withProgressBar(DiscoveryService::getMediaAssetFiles(), function(string $filepath): void {
67 67
             $sitePath = Hyde::siteMediaPath(Str::after($filepath, Hyde::mediaPath()));
68 68
             $this->needsParentDirectory($sitePath);
69 69
             copy($filepath, $sitePath);
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
         $collection = $this->router->getRoutes($pageClass);
83 83
 
84
-        $this->withProgressBar($collection, function (Route $route): void {
84
+        $this->withProgressBar($collection, function(Route $route): void {
85 85
             (new StaticPageBuilder($route->getPage()))->__invoke();
86 86
         });
87 87
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     protected function isItSafeToCleanOutputDirectory(): bool
97 97
     {
98
-        if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) {
98
+        if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) {
99 99
             $this->info('Output directory will not be emptied.');
100 100
 
101 101
             return false;
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */
127 127
     protected function getPageTypes(): array
128 128
     {
129
-        return Hyde::pages()->map(function (HydePage $page): string {
129
+        return Hyde::pages()->map(function(HydePage $page): string {
130 130
             return $page::class;
131 131
         })->unique()->values()->toArray();
132 132
     }
Please login to merge, or discard this patch.
framework/src/Framework/Features/Blogging/Models/LocalFeaturedImage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
     protected function validatedStoragePath(): string
48 48
     {
49
-        if (! file_exists($this->storagePath())) {
49
+        if (!file_exists($this->storagePath())) {
50 50
             throw new FileNotFoundException(sprintf('Image at %s does not exist', $this->replaceSlashes(Hyde::pathToRelative($this->storagePath()))));
51 51
         }
52 52
 
Please login to merge, or discard this patch.
packages/realtime-compiler/tests/RealtimeCompilerTest.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -12,13 +12,13 @@  discard block
 block discarded – undo
12 12
 
13 13
 define('BASE_PATH', realpath(__DIR__.'/../../../'));
14 14
 
15
-if (BASE_PATH === false || ! file_exists(BASE_PATH.'/hyde')) {
15
+if (BASE_PATH === false || !file_exists(BASE_PATH.'/hyde')) {
16 16
     throw new InvalidArgumentException('This test suite must be run from the root of the hydephp/develop monorepo.');
17 17
 }
18 18
 
19 19
 ob_start();
20 20
 
21
-test('handle routes index page', function () {
21
+test('handle routes index page', function() {
22 22
     putenv('SERVER_DASHBOARD=false');
23 23
     mockRoute('');
24 24
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     Filesystem::unlink('_site/index.html');
38 38
 });
39 39
 
40
-test('handle routes custom pages', function () {
40
+test('handle routes custom pages', function() {
41 41
     mockRoute('foo');
42 42
 
43 43
     Filesystem::put('_pages/foo.md', '# Hello World!');
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     Filesystem::unlink('_site/foo.html');
56 56
 });
57 57
 
58
-test('handle routes pages with .html extension', function () {
58
+test('handle routes pages with .html extension', function() {
59 59
     mockRoute('foo.html');
60 60
 
61 61
     Filesystem::put('_pages/foo.md', '# Hello World!');
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     Filesystem::unlink('_site/foo.html');
74 74
 });
75 75
 
76
-test('handle routes static assets', function () {
76
+test('handle routes static assets', function() {
77 77
     mockRoute('media/app.css');
78 78
 
79 79
     $kernel = new HttpKernel();
@@ -86,14 +86,14 @@  discard block
 block discarded – undo
86 86
     expect($response->body)->toContain('/*! HydeFront v2.0.0');
87 87
 });
88 88
 
89
-test('handle throws route not found exception for missing route', function () {
89
+test('handle throws route not found exception for missing route', function() {
90 90
     mockRoute('missing');
91 91
 
92 92
     $kernel = new HttpKernel();
93 93
     $kernel->handle(new Request());
94 94
 })->throws(RouteNotFoundException::class, "Route not found: 'missing'");
95 95
 
96
-test('handle sends 404 error response for missing asset', function () {
96
+test('handle sends 404 error response for missing asset', function() {
97 97
     mockRoute('missing.css');
98 98
 
99 99
     $kernel = new HttpKernel();
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         ->and($response->statusMessage)->toBe('Not Found');
105 105
 });
106 106
 
107
-test('docs uri path is rerouted to docs/index', function () {
107
+test('docs uri path is rerouted to docs/index', function() {
108 108
     mockRoute('docs');
109 109
 
110 110
     Filesystem::put('_docs/index.md', '# Hello World!');
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     Filesystem::unlink('_site/docs/index.html');
123 123
 });
124 124
 
125
-test('docs/search renders search page', function () {
125
+test('docs/search renders search page', function() {
126 126
     mockRoute('docs/search');
127 127
 
128 128
     Blade::shouldReceive('render')->once()->andReturn('foo');
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     expect($response->body)->toBe('foo');
138 138
 });
139 139
 
140
-test('ping route returns ping response', function () {
140
+test('ping route returns ping response', function() {
141 141
     mockRoute('ping');
142 142
 
143 143
     $kernel = new HttpKernel();
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         ->and($response->statusMessage)->toBe('OK');
149 149
 });
150 150
 
151
-test('exception handling', function () {
151
+test('exception handling', function() {
152 152
     $exception = new Exception('foo');
153 153
     $response = ExceptionHandler::handle($exception);
154 154
 
Please login to merge, or discard this patch.