Completed
Pull Request — master (#6)
by Daniel
08:59
created
bridge/doctrine-collections/lib/CollectionsAgent.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,8 +82,9 @@
 block discarded – undo
82 82
     public function getIdentifier($object)
83 83
     {
84 84
         foreach ($this->getCollectionFor($object) as $identifier => $element) {
85
-            if ($element === $object)
86
-                return $identifier;
85
+            if ($element === $object) {
86
+                            return $identifier;
87
+            }
87 88
         }
88 89
 
89 90
         throw new \RuntimeException(sprintf(
Please login to merge, or discard this patch.
lib/Exception/BadMethodCallException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         throw new self(sprintf(
25 25
             'Comparison "%s" is not supported.',
26
-             $comparison
26
+                $comparison
27 27
         ));
28 28
     }
29 29
 }
Please login to merge, or discard this patch.