@@ -58,7 +58,7 @@ |
||
58 | 58 | $mappedProperty = $this->mapper->getObjectProperty($entity, $apiProperty); |
59 | 59 | |
60 | 60 | if (null !== $mappedProperty) { |
61 | - $entityProperty = $alias . '.' . $mappedProperty; |
|
61 | + $entityProperty = $alias.'.'.$mappedProperty; |
|
62 | 62 | $this->filterDoctrineProperty($builder, $entityProperty, $value); |
63 | 63 | unset($criteria[$apiProperty]); |
64 | 64 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | throw new EntityProcessingException( |
41 | 41 | 'Data for the entity is not valid', |
42 | 42 | array_map( |
43 | - function (ConstraintViolationInterface $violation) { |
|
43 | + function(ConstraintViolationInterface $violation) { |
|
44 | 44 | return $violation->getMessage(); |
45 | 45 | }, |
46 | 46 | iterator_to_array($list) |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | ->beforeNormalization() |
65 | 65 | ->ifArray() |
66 | 66 | ->then( |
67 | - function (array $v) { |
|
67 | + function(array $v) { |
|
68 | 68 | if (array_keys($v) !== range(0, count($v) - 1)) { |
69 | 69 | return $v; |
70 | 70 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | ->beforeNormalization() |
118 | 118 | ->ifString() |
119 | 119 | ->then( |
120 | - function ($v) { |
|
120 | + function($v) { |
|
121 | 121 | return [$v]; |
122 | 122 | } |
123 | 123 | ) |
@@ -36,7 +36,7 @@ |
||
36 | 36 | return 'cruds' === $type; |
37 | 37 | } |
38 | 38 | |
39 | - public function addRoute($name, $path, $controller,array $methods) |
|
39 | + public function addRoute($name, $path, $controller, array $methods) |
|
40 | 40 | { |
41 | 41 | if ($this->loaded) { |
42 | 42 | throw new \LogicException('Already loaded'); |