Passed
Push — master ( 9fbb0c...66a263 )
by Caen
03:55 queued 13s
created
packages/framework/src/Markdown/Processing/BladeDownProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public static function preprocess(string $markdown): string
36 36
     {
37
-        return implode("\n", array_map(function (string $line): string {
37
+        return implode("\n", array_map(function(string $line): string {
38 38
             return str_starts_with(strtolower($line), strtolower('[Blade]:'))
39 39
                 ? '<!-- HYDE'.trim(e($line)).' -->'
40 40
                 : $line;
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function run(): static
56 56
     {
57
-        $this->output = implode("\n", array_map(function (string $line): string {
57
+        $this->output = implode("\n", array_map(function(string $line): string {
58 58
             return $this->lineStartsWithDirective($line)
59 59
                 ? $this->processLine($line)
60 60
                 : $line;
Please login to merge, or discard this patch.
packages/framework/src/Framework/Features/Metadata/Elements/LinkElement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
             return '';
36 36
         }
37 37
 
38
-        return sprintf(' %s', collect($this->attr)->map(function (string $value, string $key): string {
38
+        return sprintf(' %s', collect($this->attr)->map(function(string $value, string $key): string {
39 39
             return e($key).'="'.e($value).'"';
40 40
         })->implode(' '));
41 41
     }
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/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.
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/Actions/CreatesNewPageSourceFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 
126 126
     protected function validateType(string $pageClass): void
127 127
     {
128
-        if (! in_array($pageClass, [MarkdownPage::class, BladePage::class, DocumentationPage::class])) {
128
+        if (!in_array($pageClass, [MarkdownPage::class, BladePage::class, DocumentationPage::class])) {
129 129
             throw new UnsupportedPageTypeException('The page type must be either "markdown", "blade", or "documentation"');
130 130
         }
131 131
     }
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
     protected 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/Pages/InMemoryPage.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->__call('compile', []);
95 95
         }
96 96
 
97
-        if ($this->getBladeView() && ! $this->getContents()) {
97
+        if ($this->getBladeView() && !$this->getContents()) {
98 98
             if (str_ends_with($this->getBladeView(), '.blade.php')) {
99 99
                 // If the view key is for a Blade file path, we'll use the anonymous view compiler to compile it.
100 100
                 // This allows you to use any arbitrary file, without needing to register its namespace or directory.
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     public function __call(string $method, array $parameters): mixed
134 134
     {
135
-        if (! $this->hasMacro($method)) {
135
+        if (!$this->hasMacro($method)) {
136 136
             throw new BadMethodCallException(sprintf(
137 137
                 'Method %s::%s does not exist.', static::class, $method
138 138
             ));
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Concerns/ManagesExtensions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
             throw new BadMethodCallException('Cannot register an extension after the Kernel has been booted.');
40 40
         }
41 41
 
42
-        if (! is_subclass_of($extension, HydeExtension::class)) {
42
+        if (!is_subclass_of($extension, HydeExtension::class)) {
43 43
             // We want to make sure that the extension class extends the HydeExtension class,
44 44
             // so that we won't have to check the methods we need to call exist later on.
45 45
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function getExtension(string $extension): HydeExtension
65 65
     {
66
-        if (! isset($this->extensions[$extension])) {
66
+        if (!isset($this->extensions[$extension])) {
67 67
             throw new InvalidArgumentException("Extension [$extension] is not registered.");
68 68
         }
69 69
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */
96 96
     public function getRegisteredPageClasses(): array
97 97
     {
98
-        return array_unique(array_merge(...array_map(function (string $extension): array {
98
+        return array_unique(array_merge(...array_map(function(string $extension): array {
99 99
             /** @var <class-string<\Hyde\Foundation\Concerns\HydeExtension>> $extension */
100 100
             return $extension::getPageClasses();
101 101
         }, $this->getRegisteredExtensions())));
Please login to merge, or discard this patch.