Passed
Push — master ( ab8784...529dea )
by Caen
03:55 queued 12s
created
packages/framework/src/Services/Markdown/ShortcodeProcessor.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
 
50 50
     public function processInput(): static
51 51
     {
52
-        $this->output = implode("\n", array_map(function ($line) {
52
+        $this->output = implode("\n", array_map(function($line) {
53 53
             return $this->expandShortcode($line);
54 54
         }, explode("\n", $this->input)));
55 55
 
Please login to merge, or discard this patch.
packages/framework/src/Services/Markdown/BladeDownProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public static function preprocess(string $markdown): string
32 32
     {
33
-        return implode("\n", array_map(function ($line) {
33
+        return implode("\n", array_map(function($line) {
34 34
             return str_starts_with(strtolower($line), strtolower('[Blade]:'))
35 35
                 ? '<!-- HYDE'.trim(htmlentities($line)).' -->'
36 36
                 : $line;
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     public function run(): static
52 52
     {
53
-        $this->output = implode("\n", array_map(function ($line) {
53
+        $this->output = implode("\n", array_map(function($line) {
54 54
             return $this->lineStartsWithDirective($line)
55 55
                 ? $this->processLine($line)
56 56
                 : $line;
Please login to merge, or discard this patch.
packages/framework/src/Services/SitemapService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     public function generate(): static
33 33
     {
34
-        Route::all()->each(function ($route) {
34
+        Route::all()->each(function($route) {
35 35
             $this->addRoute($route);
36 36
         });
37 37
 
Please login to merge, or discard this patch.
packages/framework/src/Foundation/Filesystem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@
 block discarded – undo
75 75
      */
76 76
     public function copy(string $from, string $to, bool $force = false): int|bool
77 77
     {
78
-        if (! file_exists($from)) {
78
+        if (!file_exists($from)) {
79 79
             return 404;
80 80
         }
81 81
 
82
-        if (file_exists($to) && ! $force) {
82
+        if (file_exists($to) && !$force) {
83 83
             return 409;
84 84
         }
85 85
 
Please login to merge, or discard this patch.
packages/framework/src/Models/DocumentationSidebar.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     /** @return $this */
13 13
     public function generate(): static
14 14
     {
15
-        RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function (Route $route) {
15
+        RoutingService::getInstance()->getRoutesForModel(DocumentationPage::class)->each(function(Route $route) {
16 16
             $this->items->push(NavItem::fromRoute($route)->setPriority($this->getPriorityForRoute($route)));
17 17
         });
18 18
 
@@ -21,28 +21,28 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function hasGroups(): bool
23 23
     {
24
-        return $this->items->map(function (NavItem $item) {
24
+        return $this->items->map(function(NavItem $item) {
25 25
             return $item->getGroup() !== null;
26 26
         })->contains(true);
27 27
     }
28 28
 
29 29
     public function getGroups(): array
30 30
     {
31
-        return $this->items->map(function (NavItem $item) {
31
+        return $this->items->map(function(NavItem $item) {
32 32
             return $item->getGroup();
33 33
         })->unique()->toArray();
34 34
     }
35 35
 
36 36
     public function getItemsInGroup(?string $group): Collection
37 37
     {
38
-        return $this->items->filter(function ($item) use ($group) {
38
+        return $this->items->filter(function($item) use ($group) {
39 39
             return $item->getGroup() === $group || $item->getGroup() === Str::slug($group);
40 40
         })->sortBy('priority')->values();
41 41
     }
42 42
 
43 43
     protected function filterHiddenItems(): Collection
44 44
     {
45
-        return $this->items->reject(function (NavItem $item) {
45
+        return $this->items->reject(function(NavItem $item) {
46 46
             return $item->route->getSourceModel()->matter('hidden', false) || ($item->route->getRouteKey() === 'docs/index');
47 47
         })->values();
48 48
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $orderIndexArray = config('docs.sidebar_order', []);
58 58
 
59
-        if (! in_array($slug, $orderIndexArray)) {
59
+        if (!in_array($slug, $orderIndexArray)) {
60 60
             return 500;
61 61
         }
62 62
 
Please login to merge, or discard this patch.
packages/framework/src/Models/NavigationMenu.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
     /** @return $this */
29 29
     public function generate(): static
30 30
     {
31
-        RoutingService::getInstance()->getRoutes()->each(function (Route $route) {
31
+        RoutingService::getInstance()->getRoutes()->each(function(Route $route) {
32 32
             $this->items->push(NavItem::fromRoute($route));
33 33
         });
34 34
 
35
-        collect(config('hyde.navigation.custom', []))->each(function (NavItem $item) {
35
+        collect(config('hyde.navigation.custom', []))->each(function(NavItem $item) {
36 36
             $this->items->push($item);
37 37
         });
38 38
 
@@ -64,14 +64,14 @@  discard block
 block discarded – undo
64 64
 
65 65
     protected function filterHiddenItems(): Collection
66 66
     {
67
-        return $this->items->reject(function (NavItem $item) {
67
+        return $this->items->reject(function(NavItem $item) {
68 68
             return $item->hidden;
69 69
         })->values();
70 70
     }
71 71
 
72 72
     protected function filterDuplicateItems(): Collection
73 73
     {
74
-        return $this->items->unique(function (NavItem $item) {
74
+        return $this->items->unique(function(NavItem $item) {
75 75
             return $item->resolveLink();
76 76
         });
77 77
     }
Please login to merge, or discard this patch.
framework/src/Concerns/Markdown/HasConfigurableMarkdownFeatures.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
     /** @return $this */
19 19
     public function addFeature(string $feature): static
20 20
     {
21
-        if (! in_array($feature, $this->features)) {
21
+        if (!in_array($feature, $this->features)) {
22 22
             $this->features[] = $feature;
23 23
         }
24 24
 
Please login to merge, or discard this patch.