@@ -35,8 +35,7 @@ discard block |
||
| 35 | 35 | } |
| 36 | 36 | else |
| 37 | 37 | { |
| 38 | - throw new PropertyNotWritableException |
|
| 39 | - ( |
|
| 38 | + throw new PropertyNotWritableException( |
|
| 40 | 39 | get_class($this->object), |
| 41 | 40 | $property->name |
| 42 | 41 | ); |
@@ -50,16 +49,14 @@ discard block |
||
| 50 | 49 | { |
| 51 | 50 | if (!$this->reflect->properties->containsKey($property)) |
| 52 | 51 | { |
| 53 | - throw new CannotReadPropertyException |
|
| 54 | - ( |
|
| 52 | + throw new CannotReadPropertyException( |
|
| 55 | 53 | get_class($this->object), |
| 56 | 54 | $property |
| 57 | 55 | ); |
| 58 | 56 | } |
| 59 | 57 | elseif (!$this->reflect->properties[$property]->readable) |
| 60 | 58 | { |
| 61 | - throw new PropertyNotReadableException |
|
| 62 | - ( |
|
| 59 | + throw new PropertyNotReadableException( |
|
| 63 | 60 | get_class($this->object), |
| 64 | 61 | $property |
| 65 | 62 | ); |
@@ -65,8 +65,7 @@ discard block |
||
| 65 | 65 | { |
| 66 | 66 | if (!isset($args[$i])) |
| 67 | 67 | { |
| 68 | - throw new MissingRequiredParameterException |
|
| 69 | - ( |
|
| 68 | + throw new MissingRequiredParameterException( |
|
| 70 | 69 | get_class($this->object), |
| 71 | 70 | $property->name |
| 72 | 71 | ); |
@@ -144,14 +143,12 @@ discard block |
||
| 144 | 143 | { |
| 145 | 144 | if (!$this->reflect->properties->containsKey($property)) |
| 146 | 145 | { |
| 147 | - throw new CannotWritePropertyException |
|
| 148 | - ( |
|
| 146 | + throw new CannotWritePropertyException( |
|
| 149 | 147 | get_class($this->object), $property |
| 150 | 148 | ); |
| 151 | 149 | } |
| 152 | 150 | |
| 153 | - $this->setAnyValue |
|
| 154 | - ( |
|
| 151 | + $this->setAnyValue( |
|
| 155 | 152 | $this->reflect->properties[$property], |
| 156 | 153 | $value |
| 157 | 154 | ); |
@@ -198,8 +195,7 @@ discard block |
||
| 198 | 195 | * @param ReflectionProperty $property The property to set |
| 199 | 196 | * @param mixed $value The value to set |
| 200 | 197 | */ |
| 201 | - private function setNonNullValue |
|
| 202 | - ( |
|
| 198 | + private function setNonNullValue( |
|
| 203 | 199 | ReflectionProperty $property, |
| 204 | 200 | $value |
| 205 | 201 | ) |
@@ -248,8 +244,7 @@ discard block |
||
| 248 | 244 | * @param callable $cast Method to cast a value to the scalar data |
| 249 | 245 | * type |
| 250 | 246 | */ |
| 251 | - private function setScalarValue |
|
| 252 | - ( |
|
| 247 | + private function setScalarValue( |
|
| 253 | 248 | ReflectionProperty $property, |
| 254 | 249 | $value, |
| 255 | 250 | string $name, |
@@ -264,8 +259,7 @@ discard block |
||
| 264 | 259 | } |
| 265 | 260 | elseif (is_object($value) && method_exists([$value, $method])) |
| 266 | 261 | { |
| 267 | - $this->setScalarValue |
|
| 268 | - ( |
|
| 262 | + $this->setScalarValue( |
|
| 269 | 263 | $property, |
| 270 | 264 | $value->$method(), |
| 271 | 265 | $method, |
@@ -284,8 +278,7 @@ discard block |
||
| 284 | 278 | * @param ReflectionProperty $property The property to set |
| 285 | 279 | * @param mixed $value The value to set |
| 286 | 280 | */ |
| 287 | - private function setObjectValue |
|
| 288 | - ( |
|
| 281 | + private function setObjectValue( |
|
| 289 | 282 | ReflectionProperty $property, |
| 290 | 283 | $value |
| 291 | 284 | ) |
@@ -296,8 +289,7 @@ discard block |
||
| 296 | 289 | } |
| 297 | 290 | else |
| 298 | 291 | { |
| 299 | - $this->throwError |
|
| 300 | - ( |
|
| 292 | + $this->throwError( |
|
| 301 | 293 | $property, |
| 302 | 294 | $property->type->classname, |
| 303 | 295 | $value |
@@ -311,8 +303,7 @@ discard block |
||
| 311 | 303 | * @param ReflectionProperty $property The property to set |
| 312 | 304 | * @param mixed The value to set |
| 313 | 305 | */ |
| 314 | - private function setCollectionValue |
|
| 315 | - ( |
|
| 306 | + private function setCollectionValue( |
|
| 316 | 307 | ReflectionProperty $property, |
| 317 | 308 | $value |
| 318 | 309 | ) |
@@ -334,15 +325,13 @@ discard block |
||
| 334 | 325 | * @param string $expected The expected datatype |
| 335 | 326 | * @param string $value The value being set |
| 336 | 327 | */ |
| 337 | - private function throwError |
|
| 338 | - ( |
|
| 328 | + private function throwError( |
|
| 339 | 329 | ReflectionProperty $property, |
| 340 | 330 | string $expected, |
| 341 | 331 | $value |
| 342 | 332 | ) |
| 343 | 333 | { |
| 344 | - throw new IllegalPropertyTypeException |
|
| 345 | - ( |
|
| 334 | + throw new IllegalPropertyTypeException( |
|
| 346 | 335 | get_class($this->object), |
| 347 | 336 | $property->name, |
| 348 | 337 | $expected, |
@@ -45,10 +45,9 @@ |
||
| 45 | 45 | /** |
| 46 | 46 | * {@inheritDoc} |
| 47 | 47 | */ |
| 48 | - public function splice |
|
| 49 | - ( |
|
| 48 | + public function splice( |
|
| 50 | 49 | int $offset, |
| 51 | - ?int $length = null, |
|
| 50 | + ? int $length = null, |
|
| 52 | 51 | array $replacement = [] |
| 53 | 52 | ) |
| 54 | 53 | { |
@@ -33,10 +33,9 @@ |
||
| 33 | 33 | * @param int $length The number of elements to remove |
| 34 | 34 | * @param array $items Items to add |
| 35 | 35 | */ |
| 36 | - public function splice |
|
| 37 | - ( |
|
| 36 | + public function splice( |
|
| 38 | 37 | int $offset, |
| 39 | - ?int$length = null, |
|
| 38 | + ? int$length = null, |
|
| 40 | 39 | array $items = [] |
| 41 | 40 | ); |
| 42 | 41 | |
@@ -41,8 +41,7 @@ discard block |
||
| 41 | 41 | return static::$defaultHashProducer; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public static function setDefaultHashProducer |
|
| 45 | - ( |
|
| 44 | + public static function setDefaultHashProducer( |
|
| 46 | 45 | HashProducerInterface $hashProducer |
| 47 | 46 | ) |
| 48 | 47 | : HashProducerInterface |
@@ -60,9 +59,8 @@ discard block |
||
| 60 | 59 | */ |
| 61 | 60 | protected $hashProducer; |
| 62 | 61 | |
| 63 | - public function __construct |
|
| 64 | - ( |
|
| 65 | - ?HashProducerInterface $hashProducer = null |
|
| 62 | + public function __construct( |
|
| 63 | + ? HashProducerInterface $hashProducer = null |
|
| 66 | 64 | ) |
| 67 | 65 | { |
| 68 | 66 | $this->hashProducer = |
@@ -45,10 +45,9 @@ |
||
| 45 | 45 | /** |
| 46 | 46 | * {@inheritDoc} |
| 47 | 47 | */ |
| 48 | - public function splice |
|
| 49 | - ( |
|
| 48 | + public function splice( |
|
| 50 | 49 | int $offset, |
| 51 | - ?int $length = null, |
|
| 50 | + ? int $length = null, |
|
| 52 | 51 | array $replacement = [] |
| 53 | 52 | ) |
| 54 | 53 | { |
@@ -39,8 +39,7 @@ discard block |
||
| 39 | 39 | return static::$default; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public static function setDefault |
|
| 43 | - ( |
|
| 42 | + public static function setDefault( |
|
| 44 | 43 | ReflectionCompositeProviderInterface $default |
| 45 | 44 | ) |
| 46 | 45 | { |
@@ -60,8 +59,7 @@ discard block |
||
| 60 | 59 | { |
| 61 | 60 | $this->cache[$classname] = |
| 62 | 61 | ( |
| 63 | - ReflectionCompositeFactory::fromClassName |
|
| 64 | - ( |
|
| 62 | + ReflectionCompositeFactory::fromClassName( |
|
| 65 | 63 | $classname |
| 66 | 64 | ) |
| 67 | 65 | ) |
@@ -70,8 +70,7 @@ discard block |
||
| 70 | 70 | * @param PHPNativeReflectionClass $reflect |
| 71 | 71 | * @param ReflectionCompositeProviderInterface $provider |
| 72 | 72 | */ |
| 73 | - public function __construct |
|
| 74 | - ( |
|
| 73 | + public function __construct( |
|
| 75 | 74 | PHPNativeReflectionClass $reflect, |
| 76 | 75 | ReflectionCompositeProviderInterface $provider |
| 77 | 76 | ) |
@@ -107,13 +106,11 @@ discard block |
||
| 107 | 106 | $file = (new ReflectionFileFactory($fileName))->build(); |
| 108 | 107 | $this->accessor->setRawValue('file', $file); |
| 109 | 108 | |
| 110 | - $this->accessor->setRawValue |
|
| 111 | - ( |
|
| 109 | + $this->accessor->setRawValue( |
|
| 112 | 110 | 'classname', |
| 113 | 111 | $this->reflector->name |
| 114 | 112 | ); |
| 115 | - $this->accessor->setRawValue |
|
| 116 | - ( |
|
| 113 | + $this->accessor->setRawValue( |
|
| 117 | 114 | 'namespace', |
| 118 | 115 | $file->namespaces[$this->reflector->getNamespaceName()] |
| 119 | 116 | ); |
@@ -132,8 +129,7 @@ discard block |
||
| 132 | 129 | * @param bool $checkFile |
| 133 | 130 | * @param string $singular |
| 134 | 131 | */ |
| 135 | - protected function addItems |
|
| 136 | - ( |
|
| 132 | + protected function addItems( |
|
| 137 | 133 | string $name, |
| 138 | 134 | bool $checkFile, |
| 139 | 135 | string $signular |
@@ -164,8 +160,7 @@ discard block |
||
| 164 | 160 | new $factory($item), |
| 165 | 161 | $item |
| 166 | 162 | ); |
| 167 | - $this->accessor->rawAddToValue |
|
| 168 | - ( |
|
| 163 | + $this->accessor->rawAddToValue( |
|
| 169 | 164 | 'local' . ucfirst($name), |
| 170 | 165 | $item |
| 171 | 166 | ); |
@@ -182,8 +177,7 @@ discard block |
||
| 182 | 177 | * @param PHPNativeReflectionClass $reflect |
| 183 | 178 | * @param string $method |
| 184 | 179 | */ |
| 185 | - protected function addInheritance |
|
| 186 | - ( |
|
| 180 | + protected function addInheritance( |
|
| 187 | 181 | string $group, |
| 188 | 182 | PHPNativeReflectionClass $reflect, |
| 189 | 183 | string $method = 'rawAddToValue' |
@@ -203,15 +197,13 @@ discard block |
||
| 203 | 197 | * @param ReflectionPropertyFactory $factory |
| 204 | 198 | * @return ReflectionProperty |
| 205 | 199 | */ |
| 206 | - protected function buildProperty |
|
| 207 | - ( |
|
| 200 | + protected function buildProperty( |
|
| 208 | 201 | ReflectionPropertyFactory $factory, |
| 209 | 202 | PHPNativeReflectionProperty $reflect |
| 210 | 203 | ) |
| 211 | 204 | : ReflectionProperty |
| 212 | 205 | { |
| 213 | - return $factory->build |
|
| 214 | - ( |
|
| 206 | + return $factory->build( |
|
| 215 | 207 | $this->object, |
| 216 | 208 | $this->reflector |
| 217 | 209 | ->getDefaultProperties()[$reflect->getName()] |