Completed
Push — dev ( ec983a...80b68f )
by Przemysław eRIZ
02:34
created
src/Generator/AssertGenerator/Choice.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
         if ($constraint->multiple) {
19 19
             $set = (array) array_rand($options, mt_rand(1, count($options)));
20
-            $set = array_map(function ($el) use ($options) {
20
+            $set = array_map(function($el) use ($options) {
21 21
                 return $options[$el];
22 22
             }, $set);
23 23
 
Please login to merge, or discard this patch.
src/Annotations/AnnotationCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
     public function findAllBy($class)
34 34
     {
35
-        $result = array_filter($this->annotations, function ($a) use ($class) {
35
+        $result = array_filter($this->annotations, function($a) use ($class) {
36 36
             return $a instanceof $class;
37 37
         });
38 38
 
Please login to merge, or discard this patch.
src/Metadata/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             $fieldConfig->satisfyAssertsConditions = $objectConfig->satisfyAssertsConditions;
61 61
         }
62 62
 
63
-        if(is_null($fieldConfig->recursive)){
63
+        if (is_null($fieldConfig->recursive)) {
64 64
             $fieldConfig->recursive = $objectConfig->recursive;
65 65
         }
66 66
 
Please login to merge, or discard this patch.