Passed
Push — master ( 598c15...b112da )
by Caen
03:40 queued 11s
created
packages/framework/src/Services/RssFeedService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
     protected static function xmlEscape(string $string): string
111 111
     {
112
-        return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8');
112
+        return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8');
113 113
     }
114 114
 
115 115
     public static function getTitle(): string
Please login to merge, or discard this patch.
packages/framework/src/Services/RoutingService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     public function getRoutesForModel(string $pageClass): Collection
76 76
     {
77 77
         // Return a new filtered collection with only routes that are for the given page class.
78
-        return $this->routes->filter(function (RouteContract $route) use ($pageClass) {
78
+        return $this->routes->filter(function(RouteContract $route) use ($pageClass) {
79 79
             return $route->getSourceModel() instanceof $pageClass;
80 80
         });
81 81
     }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     protected function discoverPageRoutes(string $pageClass): void
126 126
     {
127 127
         /** @var PageContract $pageClass */
128
-        $pageClass::all()->each(function ($page) {
128
+        $pageClass::all()->each(function($page) {
129 129
             $this->discover($page);
130 130
         });
131 131
     }
Please login to merge, or discard this patch.
packages/framework/src/Services/MarkdownConverterService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 
55 55
     public function addExtension(string $extensionClassName): void
56 56
     {
57
-        if (! in_array($extensionClassName, $this->extensions)) {
57
+        if (!in_array($extensionClassName, $this->extensions)) {
58 58
             $this->extensions[] = $extensionClassName;
59 59
         }
60 60
     }
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeBuildSitemapCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $actionTime = microtime(true);
38 38
 
39
-        if (! $this->runPreflightCheck()) {
39
+        if (!$this->runPreflightCheck()) {
40 40
             return 1;
41 41
         }
42 42
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     protected function runPreflightCheck(): bool
51 51
     {
52
-        if (! SitemapService::canGenerateSitemap()) {
52
+        if (!SitemapService::canGenerateSitemap()) {
53 53
             $this->error('Cannot generate sitemap.xml, please check your configuration.');
54 54
 
55 55
             if ((Hyde::uriPath() === false)) {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                 $this->warn('Hint: You have disabled sitemap generation in config/hyde.php');
60 60
                 $this->line(' > You can enable sitemap generation by setting <info>`site.generate_sitemap`</> to <info>`true`</>');
61 61
             }
62
-            if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
62
+            if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) {
63 63
                 $this->warn('Hint: You don\'t have the <info>`simplexml`</> extension installed. Check your PHP installation.');
64 64
             }
65 65
 
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeRebuildStaticSiteCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function validate(): void
99 99
     {
100
-        if (! (
100
+        if (!(
101 101
             str_starts_with($this->path, Hyde::pathToRelative(Hyde::getDocumentationPagePath())) ||
102 102
             str_starts_with($this->path, Hyde::pathToRelative(Hyde::getMarkdownPostPath())) ||
103 103
             str_starts_with($this->path, Hyde::pathToRelative(Hyde::getBladePagePath())) ||
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             throw new Exception("Path [$this->path] is not in a valid source directory.", 400);
107 107
         }
108 108
 
109
-        if (! file_exists(Hyde::path($this->path))) {
109
+        if (!file_exists(Hyde::path($this->path))) {
110 110
             throw new Exception("File [$this->path] not found.", 404);
111 111
         }
112 112
     }
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeBuildRssFeedCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $actionTime = microtime(true);
38 38
 
39
-        if (! $this->runPreflightCheck()) {
39
+        if (!$this->runPreflightCheck()) {
40 40
             return 1;
41 41
         }
42 42
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     protected function runPreflightCheck(): bool
51 51
     {
52
-        if (! RssFeedService::canGenerateFeed()) {
52
+        if (!RssFeedService::canGenerateFeed()) {
53 53
             $this->error('Cannot generate an RSS feed, please check your configuration.');
54 54
 
55 55
             return false;
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydePublishHomepageCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 
86 86
     protected function canExistingIndexFileBeOverwritten(): bool
87 87
     {
88
-        if (! file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) {
88
+        if (!file_exists(Hyde::getBladePagePath('index.blade.php')) || $this->option('force')) {
89 89
             return true;
90 90
         }
91 91
 
Please login to merge, or discard this patch.
packages/framework/src/Commands/HydeMakePostCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         $this->line("Date: $creator->date");
67 67
         $this->line("Slug: $creator->slug");
68 68
 
69
-        if (! $this->confirm('Do you wish to continue?', true)) {
69
+        if (!$this->confirm('Do you wish to continue?', true)) {
70 70
             $this->info('Aborting.');
71 71
 
72 72
             return 130;
Please login to merge, or discard this patch.
packages/framework/src/Application.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
          * Enable auto-discovery.
19 19
          */
20
-        $this->app->singleton(PackageManifest::class, function () {
20
+        $this->app->singleton(PackageManifest::class, function() {
21 21
             return new PackageManifest(
22 22
                 new Filesystem,
23 23
                 $this->basePath(),
Please login to merge, or discard this patch.