Completed
Branch master (bce25e)
by Daniel
04:52
created
bridge/doctrine-phpcr-odm/lib/PhpcrOdmAgent.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Doctrine\ODM\PHPCR\DocumentManagerInterface;
9 9
 use Doctrine\Common\Util\ClassUtils;
10 10
 use Psi\Component\ObjectAgent\Exception\ObjectNotFound;
11
-use Psi\Component\ObjectAgent\Agent\Doctrine\Event\PhpcrOdmObjectEvent;
12 11
 use Psi\Component\ObjectAgent\Agent\Doctrine\Event\ObjectEvent;
13 12
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
14 13
 use Psi\Component\ObjectAgent\Events;
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
 namespace Psi\Bridge\ObjectAgent\Doctrine\PhpcrOdm;
6 6
 
Please login to merge, or discard this patch.
lib/Query/Conjunction.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
 namespace Psi\Component\ObjectAgent\Query;
6 6
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public function __construct(array $expressions)
12 12
     {
13 13
         // ensure types
14
-        array_map(function (Expression $expr) {
14
+        array_map(function(Expression $expr) {
15 15
         }, $expressions);
16 16
 
17 17
         $this->expressions = $expressions;
Please login to merge, or discard this patch.
lib/Query/Comparison.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 Psi\Component\ObjectAgent\Query;
6 6
 
Please login to merge, or discard this patch.
lib/AgentInterface.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 Psi\Component\ObjectAgent;
6 6
 
Please login to merge, or discard this patch.
lib/AgentFinder.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
 namespace Psi\Component\ObjectAgent;
6 6
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             }
22 22
         }
23 23
 
24
-        $classes = array_map(function ($element) {
24
+        $classes = array_map(function($element) {
25 25
             return get_class($element);
26 26
         }, $this->agents);
27 27
 
Please login to merge, or discard this patch.