Passed
Push — master ( a6311c...4ca4f8 )
by Adrien
04:24 queued 30s
created
tests/ApplicationTest/ORM/Query/MappingTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
         $result = '';
18 18
         $errors = $validator->validateMapping();
19 19
         foreach ($errors as $className => $errorMessages) {
20
-            $result .= $className . ':' . PHP_EOL;
20
+            $result .= $className.':'.PHP_EOL;
21 21
             foreach ($errorMessages as $e) {
22
-                $result .= $e . PHP_EOL;
22
+                $result .= $e.PHP_EOL;
23 23
             }
24 24
             $result .= PHP_EOL;
25 25
         }
Please login to merge, or discard this patch.
bin/dump-data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Application\Service\AbstractDatabase;
5 5
 
6
-require __DIR__ . '/../htdocs/index.php';
6
+require __DIR__.'/../htdocs/index.php';
7 7
 
8 8
 AbstractDatabase::dumpData($argv[1] ?? 'db.backup.sql.gz');
Please login to merge, or discard this patch.
bin/graphql.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 use Zend\Expressive\Session\Session;
11 11
 use Zend\Expressive\Session\SessionMiddleware;
12 12
 
13
-require_once __DIR__ . '/../htdocs/index.php';
13
+require_once __DIR__.'/../htdocs/index.php';
14 14
 
15 15
 $server = new Server(true);
16 16
 $request = new ServerRequest();
Please login to merge, or discard this patch.
bin/load-data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Application\Service\AbstractDatabase;
5 5
 
6
-require __DIR__ . '/../htdocs/index.php';
6
+require __DIR__.'/../htdocs/index.php';
7 7
 
8 8
 AbstractDatabase::loadData($argv[1] ?? 'db.backup.sql.gz');
Please login to merge, or discard this patch.
bin/clear-config-cache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@
 block discarded – undo
12 12
 
13 13
 declare(strict_types=1);
14 14
 
15
-chdir(__DIR__ . '/../');
15
+chdir(__DIR__.'/../');
16 16
 
17 17
 require 'vendor/autoload.php';
18 18
 
19 19
 $config = include 'config/config.php';
20 20
 
21 21
 if (!isset($config['config_cache_path'])) {
22
-    echo 'No configuration cache path found' . PHP_EOL;
22
+    echo 'No configuration cache path found'.PHP_EOL;
23 23
     exit(0);
24 24
 }
25 25
 
Please login to merge, or discard this patch.
bin/load-test-data.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 
4 4
 use Application\Service\AbstractDatabase;
5 5
 
6
-require __DIR__ . '/../htdocs/index.php';
6
+require __DIR__.'/../htdocs/index.php';
7 7
 
8
-AbstractDatabase::executeLocalCommand(PHP_BINARY . ' ./vendor/bin/doctrine orm:schema-tool:drop --ansi --full-database --force');
9
-AbstractDatabase::executeLocalCommand(PHP_BINARY . ' ./vendor/bin/doctrine-migrations migrations:migrate --ansi --no-interaction');
10
-AbstractDatabase::executeLocalCommand(PHP_BINARY . ' ./vendor/bin/doctrine dbal:import --ansi tests/data/fixture.sql');
8
+AbstractDatabase::executeLocalCommand(PHP_BINARY.' ./vendor/bin/doctrine orm:schema-tool:drop --ansi --full-database --force');
9
+AbstractDatabase::executeLocalCommand(PHP_BINARY.' ./vendor/bin/doctrine-migrations migrations:migrate --ansi --no-interaction');
10
+AbstractDatabase::executeLocalCommand(PHP_BINARY.' ./vendor/bin/doctrine dbal:import --ansi tests/data/fixture.sql');
Please login to merge, or discard this patch.
htdocs/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 /**
14 14
  * Self-called anonymous function that creates its own scope and keep the global namespace clean.
15 15
  */
16
-(function (): void {
16
+(function(): void {
17 17
     /** @var \Psr\Container\ContainerInterface $container */
18 18
     $container = require 'config/container.php';
19 19
 
Please login to merge, or discard this patch.