Test Failed
Pull Request — master (#254)
by Caen
04:45
created
packages/framework/src/Helpers/Meta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         foreach (array_reverse($meta) as $metaItem) {
43 43
             $substring = substr($metaItem, 6, strpos($metaItem, ' content="') - 6);
44 44
 
45
-            if (! in_array($substring, $existing)) {
45
+            if (!in_array($substring, $existing)) {
46 46
                 $array[] = $metaItem;
47 47
                 $existing[] = $substring;
48 48
             }
Please login to merge, or discard this patch.
packages/realtime-compiler/src/Routing/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         }
48 48
 
49 49
         // Temporary backwards compatibility for versions less than Hyde/Framework v0.48.0-beta
50
-        if (! class_exists('\Hyde\Framework\Services\RoutingService')) {
50
+        if (!class_exists('\Hyde\Framework\Services\RoutingService')) {
51 51
             return LegacyPageRouter::handle($this->request);
52 52
         }
53 53
 
Please login to merge, or discard this patch.
packages/realtime-compiler/src/Concerns/InteractsWithLaravel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     protected function bootApplication(): void
30 30
     {
31
-        if (! isset($this->laravel)) {
31
+        if (!isset($this->laravel)) {
32 32
             $this->createApplication();
33 33
         }
34 34
 
Please login to merge, or discard this patch.
projects/release-manager/release.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 echo "Short version: $shortVersion\n";
23 23
 $composerJson = json_decode(file_get_contents(__DIR__.'./../../packages/hyde/composer.json'), true);
24 24
 $composerJson['require']['hyde/framework'] = "^0.$shortVersion";
25
-file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
25
+file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
26 26
 
27 27
 echo "Transforming upcoming release notes... \n";
28 28
 
Please login to merge, or discard this patch.
projects/shelf/single-file-dashboard/dashboard.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
                               <?php
278 278
                                     $documentation = CollectionService::getDocumentationPageList();
279 279
                                     $posts = CollectionService::getMarkdownPostList();
280
-                              ?>
280
+                                ?>
281 281
                               <h3 class="h5">Your Pages</h3>
282 282
                               <table class="table">
283 283
                                  <thead class="table-secondary">
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
                                 return file_get_contents($this->filepath);
380 380
                             }
381 381
                         };
382
-                     ?>
382
+                        ?>
383 383
 
384 384
                      <section class="col-12 col-xl-10 col-xxl-8">
385 385
                         <h3 class="h6 my-3">Showing file <code><?= e($editor->contentpath) ?></code></h3>
@@ -456,10 +456,10 @@  discard block
 block discarded – undo
456 456
 
457 457
 <?php
458 458
 } catch (\Throwable $th) {
459
-                         echo '<h1>Error</h1>';
460
-                         echo '<p>An error occurred while processing your request.</p>';
461
-                         echo '<pre><code>'.$th->getMessage().'</code></pre>';
462
-                         echo '<p>Extra information:</p>';
463
-                         echo '<pre><code>'.$th->getTraceAsString().print_r($th, true).'</code></pre>';
464
-                         exit($th->getCode());
465
-                     }
459
+                            echo '<h1>Error</h1>';
460
+                            echo '<p>An error occurred while processing your request.</p>';
461
+                            echo '<pre><code>'.$th->getMessage().'</code></pre>';
462
+                            echo '<p>Extra information:</p>';
463
+                            echo '<pre><code>'.$th->getTraceAsString().print_r($th, true).'</code></pre>';
464
+                            exit($th->getCode());
465
+                        }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         'file-viewer' => 'File Viewer',
72 72
     ];
73 73
 
74
-    if (! isset($routes[$page])) {
74
+    if (!isset($routes[$page])) {
75 75
         header('HTTP/1.1 404 Not Found');
76 76
         $page = '404';
77 77
     }
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                                 $class = $this->type;
368 368
                                 $filename = $this->filename;
369 369
                                 $filepath = $class::$sourceDirectory.'/'.$filename.$class::$fileExtension;
370
-                                if (! file_exists(Hyde::path($filepath))) {
370
+                                if (!file_exists(Hyde::path($filepath))) {
371 371
                                     throw new FileNotFoundException($filepath);
372 372
                                 }
373 373
 
Please login to merge, or discard this patch.