Passed
Branch discover-filesystem (2a4c10)
by Caen
03:39
created
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/Modules/Markdown/MarkdownServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function register(): void
10 10
     {
11
-        $this->app->singleton(MarkdownConverter::class, function () {
11
+        $this->app->singleton(MarkdownConverter::class, function() {
12 12
             return new MarkdownConverter();
13 13
         });
14 14
     }
Please login to merge, or discard this patch.
packages/framework/src/Modules/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/Modules/Markdown/CodeblockFilepathProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
         $lines = explode("\n", $markdown);
13 13
 
14 14
         foreach ($lines as $index => $line) {
15
-            if (static::lineMatchesPattern($line) && ! str_contains($line, '{"shortcodes": false}')) {
15
+            if (static::lineMatchesPattern($line) && !str_contains($line, '{"shortcodes": false}')) {
16 16
                 // Add the meta-block two lines before the pattern, placing it just above the code block.
17 17
                 // This prevents the meta-block from interfering with other processes.
18 18
                 $lines[$index - 2] .= sprintf(
Please login to merge, or discard this patch.
packages/framework/src/Modules/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/MarkdownService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 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
     }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 
157 157
     public function addFeature(string $feature): static
158 158
     {
159
-        if (! in_array($feature, $this->features)) {
159
+        if (!in_array($feature, $this->features)) {
160 160
             $this->features[] = $feature;
161 161
         }
162 162
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 
209 209
     protected function determineIfTorchlightAttributionShouldBeInjected(): bool
210 210
     {
211
-        return ! $this->isDocumentationPage()
211
+        return !$this->isDocumentationPage()
212 212
             && config('torchlight.attribution.enabled', true)
213 213
             && str_contains($this->html, 'Syntax highlighted by torchlight.dev');
214 214
     }
Please login to merge, or discard this patch.
packages/framework/src/Facades/Includes.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $path = static::path($filename);
26 26
 
27
-        if (! file_exists($path)) {
27
+        if (!file_exists($path)) {
28 28
             return $default;
29 29
         }
30 30
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $path = static::path(basename($filename, '.md').'.md');
38 38
 
39
-        if (! file_exists($path)) {
39
+        if (!file_exists($path)) {
40 40
             return $default === null ? null : Markdown::render($default);
41 41
         }
42 42
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $path = static::path(basename($filename, '.blade.php').'.blade.php');
50 50
 
51
-        if (! file_exists($path)) {
51
+        if (!file_exists($path)) {
52 52
             return $default === null ? null : Blade::render($default);
53 53
         }
54 54
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     protected static function needsDirectory(string $directory): void
59 59
     {
60
-        if (! file_exists($directory)) {
60
+        if (!file_exists($directory)) {
61 61
             mkdir($directory, recursive: true);
62 62
         }
63 63
     }
Please login to merge, or discard this patch.