@@ -45,6 +45,6 @@ |
||
45 | 45 | */ |
46 | 46 | public function validate($value) |
47 | 47 | { |
48 | - return ! $this->validator->validate($value); |
|
48 | + return !$this->validator->validate($value); |
|
49 | 49 | } |
50 | 50 | } |
@@ -48,7 +48,6 @@ |
||
48 | 48 | * Filters and validates a value. And return the filtered value. |
49 | 49 | * It throws an exception if the value is not valid. |
50 | 50 | * |
51 | - * @param mixed $value |
|
52 | 51 | * @return mixed |
53 | 52 | * |
54 | 53 | * @throws \Mcustiel\SimpleRequest\Exception\InvalidValueException |
@@ -88,7 +88,7 @@ |
||
88 | 88 | foreach ($this->validators as $validator) { |
89 | 89 | if (!$validator->validate($value)) { |
90 | 90 | throw new InvalidValueException( |
91 | - "Field {$this->name}, was set with invalid value: " . var_export($value, true) |
|
91 | + "Field {$this->name}, was set with invalid value: ".var_export($value, true) |
|
92 | 92 | ); |
93 | 93 | } |
94 | 94 | } |
@@ -44,9 +44,9 @@ |
||
44 | 44 | throw new FilterDoesNotExistException("Filter class {$type} does not exist"); |
45 | 45 | } |
46 | 46 | $filter = new $type; |
47 | - if (! ($filter instanceof FilterInterface)) { |
|
47 | + if (!($filter instanceof FilterInterface)) { |
|
48 | 48 | throw new FilterDoesNotExistException( |
49 | - "Filter class {$type} must implement " . FilterInterface::class |
|
49 | + "Filter class {$type} must implement ".FilterInterface::class |
|
50 | 50 | ); |
51 | 51 | } |
52 | 52 |
@@ -43,9 +43,9 @@ |
||
43 | 43 | throw new ValidatorDoesNotExistException("Validator class {$type} does not exist"); |
44 | 44 | } |
45 | 45 | $validator = new $type; |
46 | - if (! ($validator instanceof ValidatorInterface)) { |
|
46 | + if (!($validator instanceof ValidatorInterface)) { |
|
47 | 47 | throw new ValidatorDoesNotExistException( |
48 | - "Validator class {$type} must implement " . ValidatorInterface::class |
|
48 | + "Validator class {$type} must implement ".ValidatorInterface::class |
|
49 | 49 | ); |
50 | 50 | } |
51 | 51 |
@@ -29,6 +29,6 @@ |
||
29 | 29 | return new $val; |
30 | 30 | } |
31 | 31 | } |
32 | - throw new \Exception('Unsupported annotation: ' . get_class($annotation)); |
|
32 | + throw new \Exception('Unsupported annotation: '.get_class($annotation)); |
|
33 | 33 | } |
34 | 34 | } |
@@ -78,7 +78,7 @@ |
||
78 | 78 | $value = $propertyParser->parse( |
79 | 79 | $this->getFromRequest($request, $propertyName) |
80 | 80 | ); |
81 | - $method = 'set' . ucfirst($propertyName); |
|
81 | + $method = 'set'.ucfirst($propertyName); |
|
82 | 82 | $object->$method($value); |
83 | 83 | } |
84 | 84 |
@@ -42,7 +42,7 @@ |
||
42 | 42 | try { |
43 | 43 | $this->setProperty($request, $object, $propertyName, $propertyParser); |
44 | 44 | } catch (InvalidValueException $e) { |
45 | - $exception = new InvalidRequestException($propertyName . ': ' . $e->getMessage()); |
|
45 | + $exception = new InvalidRequestException($propertyName.': '.$e->getMessage()); |
|
46 | 46 | $exception->setErrors([$propertyName => $e->getMessage()]); |
47 | 47 | throw $exception; |
48 | 48 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | * using a requestParser. |
59 | 59 | * |
60 | 60 | * @param array|\stdClass $request The request to convert to an object. |
61 | - * @param string|array $className The class of the object to which the request must be converted. |
|
61 | + * @param string $className The class of the object to which the request must be converted. |
|
62 | 62 | * @param string $behavior The behaviour of the parser. |
63 | 63 | */ |
64 | 64 | public function parseRequest( |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | private function getClassName($className, $isArray) |
115 | 115 | { |
116 | - return '' . $isArray ? $className[0] : $className; |
|
116 | + return ''.$isArray ? $className[0] : $className; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | private function generateRequestParserObject($className, RequestParser $parser) |
126 | 126 | { |
127 | - $cacheKey = str_replace('\\', '', $className . get_class($parser)); |
|
127 | + $cacheKey = str_replace('\\', '', $className.get_class($parser)); |
|
128 | 128 | $cacheItem = $this->cache->getItem($cacheKey); |
129 | 129 | $return = $cacheItem->get(); |
130 | 130 | if ($return === null) { |