Test Failed
Push — master ( 8e4267...dc8c67 )
by MusikAnimal
06:25
created
src/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 use Composer\Autoload\ClassLoader;
5 5
 use Doctrine\Common\Annotations\AnnotationRegistry;
@@ -9,6 +9,6 @@  discard block
 block discarded – undo
9 9
  */
10 10
 $loader = require __DIR__.'/../vendor/autoload.php';
11 11
 
12
-AnnotationRegistry::registerLoader([ $loader, 'loadClass' ]);
12
+AnnotationRegistry::registerLoader([$loader, 'loadClass']);
13 13
 
14 14
 return $loader;
Please login to merge, or discard this patch.
src/AppKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 use Symfony\Component\Config\Loader\LoaderInterface;
6 6
 use Symfony\Component\HttpKernel\Kernel;
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             new AppBundle\AppBundle(),
44 44
         ];
45 45
 
46
-        if (in_array($this->getEnvironment(), [ 'dev', 'test' ], true)) {
46
+        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
47 47
             $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
48 48
             $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
49 49
         }
Please login to merge, or discard this patch.
src/DoctrineMigrations/Version20171208040821.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Application\Migrations;
5 5
 
Please login to merge, or discard this patch.
src/DoctrineMigrations/Version20170623205224.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Application\Migrations;
5 5
 
Please login to merge, or discard this patch.
src/DoctrineMigrations/Version20170623203059.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Application\Migrations;
5 5
 
Please login to merge, or discard this patch.
src/AppCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
5 5
 
Please login to merge, or discard this patch.