Passed
Push — master ( d750a0...3a6cbe )
by Caen
03:06 queued 12s
created
framework/src/Framework/Concerns/Internal/SetsUpMarkdownConverter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,14 +65,14 @@
 block discarded – undo
65 65
 
66 66
     protected function registerPreProcessor(string $class, bool $when = true): void
67 67
     {
68
-        if (! in_array($class, $this->preprocessors) && $when) {
68
+        if (!in_array($class, $this->preprocessors) && $when) {
69 69
             $this->preprocessors[] = $class;
70 70
         }
71 71
     }
72 72
 
73 73
     protected function registerPostProcessor(string $class, bool $when = true): void
74 74
     {
75
-        if (! in_array($class, $this->postprocessors) && $when) {
75
+        if (!in_array($class, $this->postprocessors) && $when) {
76 76
             $this->postprocessors[] = $class;
77 77
         }
78 78
     }
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public static function needsDirectory(string $directory): void
16 16
     {
17
-        if (! file_exists($directory)) {
17
+        if (!file_exists($directory)) {
18 18
             mkdir($directory, recursive: true);
19 19
         }
20 20
     }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Concerns/InteractsWithFrontMatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
      */
43 43
     public function has(string $key): bool
44 44
     {
45
-        return ! blank($this->get($key));
45
+        return !blank($this->get($key));
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
packages/framework/src/Foundation/RouteCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 {
36 36
     public function getRoutes(?string $pageClass = null): self
37 37
     {
38
-        return ! $pageClass ? $this : $this->filter(function (Route $route) use ($pageClass) {
38
+        return !$pageClass ? $this : $this->filter(function(Route $route) use ($pageClass) {
39 39
             return $route->getPage() instanceof $pageClass;
40 40
         });
41 41
     }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function runDiscovery(): self
63 63
     {
64
-        $this->kernel->pages()->each(function (HydePage $page) {
64
+        $this->kernel->pages()->each(function(HydePage $page) {
65 65
             $this->discover($page);
66 66
         });
67 67
 
Please login to merge, or discard this patch.
monorepo/release.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 echo "Short version: $shortVersion\n";
23 23
 $composerJson = json_decode(file_get_contents(__DIR__.'./../../packages/hyde/composer.json'), true);
24 24
 $composerJson['require']['hyde/framework'] = "^0.$shortVersion";
25
-file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
25
+file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
26 26
 
27 27
 echo "Transforming upcoming release notes... \n";
28 28
 
Please login to merge, or discard this patch.
packages/framework/src/Framework/Actions/CreatesNewPageSourceFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,14 +121,14 @@
 block discarded – undo
121 121
 
122 122
     protected function validateType(string $pageClass): void
123 123
     {
124
-        if (! in_array($pageClass, [MarkdownPage::class, BladePage::class, DocumentationPage::class])) {
124
+        if (!in_array($pageClass, [MarkdownPage::class, BladePage::class, DocumentationPage::class])) {
125 125
             throw new UnsupportedPageTypeException('The page type must be either "markdown", "blade", or "documentation"');
126 126
         }
127 127
     }
128 128
 
129 129
     protected function failIfFileCannotBeSaved(string $path): void
130 130
     {
131
-        if (file_exists($path) && ! $this->force) {
131
+        if (file_exists($path) && !$this->force) {
132 132
             throw new FileConflictException($path);
133 133
         }
134 134
     }
Please login to merge, or discard this patch.
packages/framework/src/Console/Commands/MakePostCommand.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
         $this->displaySelections($creator);
36 36
 
37
-        if (! $this->confirm('Do you wish to continue?', true)) {
37
+        if (!$this->confirm('Do you wish to continue?', true)) {
38 38
             $this->info('Aborting.');
39 39
 
40 40
             return 130;
Please login to merge, or discard this patch.
packages/framework/src/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Hyde\Foundation\HydeKernel;
6 6
 
7
-if (! function_exists('hyde')) {
7
+if (!function_exists('hyde')) {
8 8
     /**
9 9
      * Get the available HydeKernel instance.
10 10
      */
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     }
15 15
 }
16 16
 
17
-if (! function_exists('unslash')) {
17
+if (!function_exists('unslash')) {
18 18
     /**
19 19
      * Remove trailing slashes from the start and end of a string.
20 20
      */
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Rector\Config\RectorConfig;
6 6
 use Rector\Laravel\Set\LaravelSetList;
7 7
 
8
-return static function (RectorConfig $rectorConfig): void {
8
+return static function(RectorConfig $rectorConfig): void {
9 9
     $rectorConfig->paths([__DIR__.'/packages/framework/src']);
10 10
     $rectorConfig->sets([
11 11
         LaravelSetList::LARAVEL_90,
Please login to merge, or discard this patch.