| @@ -17,7 +17,7 @@ | ||
| 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 | |
| @@ -32,7 +32,7 @@ | ||
| 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 | |
| @@ -60,7 +60,7 @@ | ||
| 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 | |