Passed
Push — master ( cedd92...c053ab )
by Caen
05:50 queued 02:47
created
framework/src/Framework/Features/XmlGenerators/BaseXmlGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
     protected function escape(string $string): string
46 46
     {
47
-        return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8');
47
+        return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8');
48 48
     }
49 49
 
50 50
     protected function addChild(SimpleXMLElement $element, string $name, string $value): SimpleXMLElement
Please login to merge, or discard this patch.
packages/framework/src/Framework/Features/Metadata/GlobalMetadataBag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         // Reject any metadata from the global metadata bag that is already present in the page metadata bag.
50 50
 
51 51
         foreach (['links', 'metadata', 'properties', 'generics'] as $type) {
52
-            $global->$type = array_filter($global->$type, fn (Element $element): bool => ! in_array($element->uniqueKey(),
52
+            $global->$type = array_filter($global->$type, fn (Element $element): bool => !in_array($element->uniqueKey(),
53 53
                 array_map(fn (Element $element): string => $element->uniqueKey(), $page->metadata->$type)
54 54
             ));
55 55
         }
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
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
     {
33 33
         $selected = $this->parseSelection();
34 34
 
35
-        if (! Homepages::exists($selected)) {
35
+        if (!Homepages::exists($selected)) {
36 36
             $this->error("Homepage $selected does not exist.");
37 37
 
38 38
             return 404;
39 39
         }
40 40
 
41
-        if (! $this->canExistingFileBeOverwritten()) {
41
+        if (!$this->canExistingFileBeOverwritten()) {
42 42
             $this->error('A modified index.blade.php file already exists. Use --force to overwrite.');
43 43
 
44 44
             return 409;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     protected function formatPublishableChoices(): array
71 71
     {
72
-        return $this->getTemplateOptions()->map(function (array $option, string $key): string {
72
+        return $this->getTemplateOptions()->map(function(array $option, string $key): string {
73 73
             return  "<comment>$key</comment>: {$option['description']}";
74 74
         })->values()->toArray();
75 75
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             return true;
91 91
         }
92 92
 
93
-        if (! file_exists(Hyde::getBladePagePath('index.blade.php'))) {
93
+        if (!file_exists(Hyde::getBladePagePath('index.blade.php'))) {
94 94
             return true;
95 95
         }
96 96
 
Please login to merge, or discard this patch.
packages/framework/src/Framework/Features/Templates/PublishableView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $path = static::getOutputPath();
19 19
 
20
-        if (file_exists($path) && ! $force) {
20
+        if (file_exists($path) && !$force) {
21 21
             return false;
22 22
         }
23 23
 
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Concerns/ManagesHydeKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /** @return array<class-string<\Hyde\Pages\Concerns\HydePage>> */
60 60
     public function getDiscoveredPageTypes(): array
61 61
     {
62
-        return $this->pages()->map(function (HydePage $page): string {
62
+        return $this->pages()->map(function(HydePage $page): string {
63 63
             return $page::class;
64 64
         })->unique()->values()->toArray();
65 65
     }
Please login to merge, or discard this patch.
monorepo/HydeStan/vendor/php-console/console.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     public function line(string $message = ''): self
22 22
     {
23
-        return $this->write($message . PHP_EOL);
23
+        return $this->write($message.PHP_EOL);
24 24
     }
25 25
 
26 26
     public function newline(int $count = 1): self
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     }
55 55
     protected function ansi(string $string, string $color): string
56 56
     {
57
-        return "\033[" . $color . 'm' . $string . "\033[0m";
57
+        return "\033[".$color.'m'.$string."\033[0m";
58 58
     }
59 59
 
60 60
     protected function black(string $string): string
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->data($key));
45
+        return !blank($this->data($key));
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
packages/framework/src/Framework/Concerns/ValidatesExistence.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
         /** @var \Hyde\Pages\Concerns\HydePage $model */
25 25
         $filepath = $model::sourcePath($slug);
26 26
 
27
-        if (! file_exists(Hyde::path($filepath))) {
27
+        if (!file_exists(Hyde::path($filepath))) {
28 28
             throw new FileNotFoundException($filepath);
29 29
         }
30 30
     }
Please login to merge, or discard this patch.
framework/src/Framework/Features/Navigation/DocumentationSidebar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /** @return $this */
19 19
     public function generate(): static
20 20
     {
21
-        Router::getRoutes(DocumentationPage::class)->each(function (Route $route): void {
21
+        Router::getRoutes(DocumentationPage::class)->each(function(Route $route): void {
22 22
             $this->items->put($route->getRouteKey(), NavItem::fromRoute($route));
23 23
         });
24 24
 
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function getGroups(): array
34 34
     {
35
-        return $this->items->map(function (NavItem $item): string {
35
+        return $this->items->map(function(NavItem $item): string {
36 36
             return $item->getGroup();
37 37
         })->unique()->toArray();
38 38
     }
39 39
 
40 40
     public function getItemsInGroup(?string $group): Collection
41 41
     {
42
-        return $this->items->filter(function (NavItem $item) use ($group): bool {
42
+        return $this->items->filter(function(NavItem $item) use ($group) : bool {
43 43
             return ($item->getGroup() === $group) || ($item->getGroup() === Str::slug($group));
44 44
         })->sortBy('navigation.priority')->values();
45 45
     }
Please login to merge, or discard this patch.