Passed
Branch develop (7581b2)
by Pierre
06:46 queued 03:37
created
Category
src/Command/DoctrinevizCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Command;
19 19
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $pattern = '/'.$input->getOption('pattern').'/';
63 63
         /** @var EntityManager $em */
64 64
         $em = $this->getContainer()->get('doctrine')->getManager();
65
-        $entities = array_filter($em->getConfiguration()->getMetadataDriverImpl()->getAllClassNames(), function ($entity) use ($pattern) {
65
+        $entities = array_filter($em->getConfiguration()->getMetadataDriverImpl()->getAllClassNames(), function($entity) use ($pattern) {
66 66
             return preg_match($pattern, $entity);
67 67
         });
68 68
         $graph = new Graph();
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\DependencyInjection;
19 19
 
Please login to merge, or discard this patch.
src/DependencyInjection/DoctrinevizBundleExtension.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\DependencyInjection;
19 19
 
Please login to merge, or discard this patch.
src/Graphviz/GraphInterface.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Graphviz;
19 19
 
Please login to merge, or discard this patch.
src/Graphviz/VertexInterface.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Graphviz;
19 19
 
Please login to merge, or discard this patch.
src/Graphviz/Edgeable.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Graphviz;
19 19
 
Please login to merge, or discard this patch.
src/Graphviz/Element.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Graphviz;
19 19
 
Please login to merge, or discard this patch.
src/Graphviz/Attribute.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Graphviz;
19 19
 
Please login to merge, or discard this patch.
src/Graphviz/Edge.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
  * @author Pierre Hennequart <[email protected]>
14 14
  */
15 15
 
16
-declare(strict_types=1);
16
+declare(strict_types = 1);
17 17
 
18 18
 namespace Janalis\Doctrineviz\Graphviz;
19 19
 
Please login to merge, or discard this patch.