Passed
Push — main ( d31675...d8b181 )
by Zsolt
21:08 queued 11:08
created
bin/cleanup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
         $output
6 6
     );
7 7
 
8
-    if (! empty($output)) {
8
+    if (!empty($output)) {
9 9
         $process = trim(array_shift($output));
10 10
         preg_match('/(\d+)$/', $process, $matches);
11 11
         $cmd = 'kill ' . (int) $matches[1];
Please login to merge, or discard this patch.
app/Application.php 2 patches
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,6 @@
 block discarded – undo
91 91
     /**
92 92
      * Analyzes the request using the router and calls corresponding action.
93 93
      * Throws HTTP exceptions in case request could not be assigned to an action.
94
-
95 94
      * @throws BadRequestException
96 95
      * @throws MethodNotAllowedException
97 96
      * @throws NotFoundException
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 /**
6 6
  * darkmatter framework
Please login to merge, or discard this patch.
app/config/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@
 block discarded – undo
13 13
 
14 14
     'payloadtest' => [
15 15
         'method' => 'GET',
16
-        'pattern' => '/payload/[{id:\d+}]',             // [] = optional
16
+        'pattern' => '/payload/[{id:\d+}]', // [] = optional
17 17
         'handler' => 'App\Http\Action\HomeActionPayload'
18 18
     ],
19 19
 
20 20
     'payloadtesttwo' => [
21 21
         'method' => 'GET',
22
-        'pattern' => '/payloadtwo/[{id:\d+}]',             // [] = optional
22
+        'pattern' => '/payloadtwo/[{id:\d+}]', // [] = optional
23 23
         'handler' => 'App\Http\Action\HomeActionPayloadTwo'
24 24
     ],
25 25
 
Please login to merge, or discard this patch.
public/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 /**
3 3
  * stardust / a project skeleton for darkmatter
4 4
  */
5
-declare(strict_types = 1);
5
+declare(strict_types=1);
6 6
 
7 7
 // date_default_timezone_set('UTC');
8 8
 
Please login to merge, or discard this patch.
app/boot.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,4 +49,4 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
 
52
- $app->run();
52
+    $app->run();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 /**
3 3
  * launch script
4 4
  */
5
-declare(strict_types = 1);
5
+declare(strict_types=1);
6 6
 
7 7
 use DarkMatter\Components\Logger\Factory as LoggerFactory;
8 8
 use DarkMatter\Http\Request;
Please login to merge, or discard this patch.
app/Http/PayloadResponder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Http;
6 6
 
Please login to merge, or discard this patch.
app/Http/Action/JsonDemoAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Http\Action;
6 6
 
Please login to merge, or discard this patch.
app/Domain/HomeDomainPayloadTwo copy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Domain;
6 6
 
Please login to merge, or discard this patch.
app/Http/Action/HomeActionPayloadTwo copy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Http\Action;
6 6
 
Please login to merge, or discard this patch.