Passed
Branch refactor-markdown-helper (ffdce7)
by Caen
06:11
created
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.
packages/framework/src/Services/DiscoveryService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public static function getSourceFileListForModel(string $model): array
58 58
     {
59
-        if (! class_exists($model) || ! is_subclass_of($model, AbstractPage::class)) {
59
+        if (!class_exists($model) || !is_subclass_of($model, AbstractPage::class)) {
60 60
             throw new UnsupportedPageTypeException($model);
61 61
         }
62 62
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         $files = [];
66 66
         foreach (glob(Hyde::path($model::qualifyBasename('{*,**/*}')), GLOB_BRACE) as $filepath) {
67
-            if (! str_starts_with(basename($filepath), '_')) {
67
+            if (!str_starts_with(basename($filepath), '_')) {
68 68
                 $files[] = self::formatSlugForModel($model, $filepath);
69 69
             }
70 70
         }
Please login to merge, or discard this patch.
packages/framework/src/Services/BuildService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function compileStaticPages(): void
36 36
     {
37
-        $this->getDiscoveredModels()->each(function (string $pageClass) {
37
+        $this->getDiscoveredModels()->each(function(string $pageClass) {
38 38
             $this->compilePagesForClass($pageClass);
39 39
         });
40 40
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
         $this->withProgressBar(
62 62
             $collection,
63
-            function ($filepath) {
63
+            function($filepath) {
64 64
                 copy($filepath, Hyde::getSiteOutputPath('media/'.basename($filepath)));
65 65
             }
66 66
         );
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     protected function getDiscoveredModels(): Collection
71 71
     {
72
-        return $this->router->getRoutes()->map(function (Route $route) {
72
+        return $this->router->getRoutes()->map(function(Route $route) {
73 73
             return $route->getPageType();
74 74
         })->unique();
75 75
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     protected function compileRoute(): \Closure
92 92
     {
93
-        return function (Route $route) {
93
+        return function(Route $route) {
94 94
             return (new StaticPageBuilder($route->getSourceModel()))->__invoke();
95 95
         };
96 96
     }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
     protected function isItSafeToCleanOutputDirectory(): bool
104 104
     {
105
-        if (! $this->isOutputDirectoryWhitelisted() && ! $this->askIfUnsafeDirectoryShouldBeEmptied()) {
105
+        if (!$this->isOutputDirectoryWhitelisted() && !$this->askIfUnsafeDirectoryShouldBeEmptied()) {
106 106
             $this->info('Output directory will not be emptied.');
107 107
 
108 108
             return false;
Please login to merge, or discard this patch.
packages/framework/src/Services/RssFeedService.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 __construct()
22 22
     {
23
-        if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
23
+        if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
24 24
             throw new \Exception('The ext-simplexml extension is not installed, but is required to generate RSS feeds.');
25 25
         }
26 26
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
     protected static function xmlEscape(string $string): string
107 107
     {
108
-        return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8');
108
+        return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8');
109 109
     }
110 110
 
111 111
     public static function getDescription(): string
Please login to merge, or discard this patch.
packages/framework/src/Services/SitemapService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function __construct()
27 27
     {
28
-        if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
28
+        if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
29 29
             throw new \Exception('The ext-simplexml extension is not installed, but is required to generate RSS feeds.');
30 30
         }
31 31
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function generate(): static
39 39
     {
40
-        Route::all()->each(function ($route) {
40
+        Route::all()->each(function($route) {
41 41
             $this->addRoute($route);
42 42
         });
43 43
 
Please login to merge, or discard this patch.
packages/testing/src/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     {
26 26
         parent::setUp();
27 27
 
28
-        if (! static::$booted) {
28
+        if (!static::$booted) {
29 29
             $this->resetApplication();
30 30
 
31 31
             static::$booted = true;
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydePublishHomepageCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     {
29 29
         $this->selected = $this->argument('homepage') ?? $this->promptForHomepage();
30 30
 
31
-        if (! $this->canExistingIndexFileBeOverwritten()) {
31
+        if (!$this->canExistingIndexFileBeOverwritten()) {
32 32
             $this->error('A modified index.blade.php file already exists. Use --force to overwrite.');
33 33
 
34 34
             return 409;
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     protected function canExistingIndexFileBeOverwritten(): bool
83 83
     {
84
-        if (! file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) {
84
+        if (!file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) {
85 85
             return true;
86 86
         }
87 87
 
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeBuildSitemapCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         $actionTime = microtime(true);
39 39
 
40
-        if (! $this->runPreflightCheck()) {
40
+        if (!$this->runPreflightCheck()) {
41 41
             return 1;
42 42
         }
43 43
 
@@ -50,17 +50,17 @@  discard block
 block discarded – undo
50 50
 
51 51
     protected function runPreflightCheck(): bool
52 52
     {
53
-        if (! Features::sitemap()) {
53
+        if (!Features::sitemap()) {
54 54
             $this->error('Cannot generate sitemap.xml, please check your configuration.');
55 55
 
56
-            if (! Hyde::hasSiteUrl()) {
56
+            if (!Hyde::hasSiteUrl()) {
57 57
                 $this->warn('Hint: You don\'t have a site URL configured. Check config/hyde.php');
58 58
             }
59 59
             if (config('site.generate_sitemap', true) !== true) {
60 60
                 $this->warn('Hint: You have disabled sitemap generation in config/hyde.php');
61 61
                 $this->line(' > You can enable sitemap generation by setting <info>`site.generate_sitemap`</> to <info>`true`</>');
62 62
             }
63
-            if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
63
+            if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
64 64
                 $this->warn('Hint: You don\'t have the <info>`simplexml`</> extension installed. Check your PHP installation.');
65 65
             }
66 66
 
Please login to merge, or discard this patch.