@@ -48,8 +48,7 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function setRawValue($key, $value) |
| 50 | 50 | { |
| 51 | - $this->getPropertyOrFail |
|
| 52 | - ( |
|
| 51 | + $this->getPropertyOrFail( |
|
| 53 | 52 | $key, |
| 54 | 53 | CannotWritePropertyException::class |
| 55 | 54 | ) |
@@ -68,8 +67,7 @@ discard block |
||
| 68 | 67 | public function getRawValue($key) |
| 69 | 68 | { |
| 70 | 69 | return |
| 71 | - $this->getPropertyOrFail |
|
| 72 | - ( |
|
| 70 | + $this->getPropertyOrFail( |
|
| 73 | 71 | $key, |
| 74 | 72 | CannotReadPropertyException::class |
| 75 | 73 | ) |
@@ -86,8 +84,7 @@ discard block |
||
| 86 | 84 | */ |
| 87 | 85 | public function rawAddToValue($key, $value) |
| 88 | 86 | { |
| 89 | - $property = $this->getPropertyOrFail |
|
| 90 | - ( |
|
| 87 | + $property = $this->getPropertyOrFail( |
|
| 91 | 88 | $key, |
| 92 | 89 | CannotWritePropertyException::class |
| 93 | 90 | ); |
@@ -113,8 +110,7 @@ discard block |
||
| 113 | 110 | } |
| 114 | 111 | catch (ReflectionException $e) |
| 115 | 112 | { |
| 116 | - throw new $class |
|
| 117 | - ( |
|
| 113 | + throw new $class( |
|
| 118 | 114 | get_class($this->object), |
| 119 | 115 | $key, |
| 120 | 116 | $e |
@@ -60,8 +60,7 @@ discard block |
||
| 60 | 60 | case T_NAMESPACE: |
| 61 | 61 | $ns = new NamespaceBlock($classname); |
| 62 | 62 | $currentNS = new RawPropertyAccessor($ns); |
| 63 | - $this->accessor->getRawValue |
|
| 64 | - ( |
|
| 63 | + $this->accessor->getRawValue( |
|
| 65 | 64 | 'namespaces' |
| 66 | 65 | ) |
| 67 | 66 | ->add($classname, $ns); |
@@ -76,8 +75,7 @@ discard block |
||
| 76 | 75 | $as = end($as); |
| 77 | 76 | } |
| 78 | 77 | |
| 79 | - $currentNS->getRawValue |
|
| 80 | - ( |
|
| 78 | + $currentNS->getRawValue( |
|
| 81 | 79 | 'useStatements' |
| 82 | 80 | ) |
| 83 | 81 | ->add($as, new UseStatement($classname, $as)); |
@@ -29,8 +29,7 @@ |
||
| 29 | 29 | { |
| 30 | 30 | if (!$this->accessor) |
| 31 | 31 | { |
| 32 | - $this->accessor = new ConditionalPropertyAccessor |
|
| 33 | - ( |
|
| 32 | + $this->accessor = new ConditionalPropertyAccessor( |
|
| 34 | 33 | $this, |
| 35 | 34 | self::getReflectionComposite() |
| 36 | 35 | ); |
@@ -47,15 +47,13 @@ |
||
| 47 | 47 | * @param string $property The property accessed |
| 48 | 48 | * @param Throwable $previous The exception which caused this |
| 49 | 49 | */ |
| 50 | - public function __construct |
|
| 51 | - ( |
|
| 50 | + public function __construct( |
|
| 52 | 51 | string $class, |
| 53 | 52 | string $property, |
| 54 | 53 | Throwable $previous = null |
| 55 | 54 | ) |
| 56 | 55 | { |
| 57 | - parent::__construct |
|
| 58 | - ( |
|
| 56 | + parent::__construct( |
|
| 59 | 57 | 'Cannot ' . static::ACCESS_TYPE . ' property: ' |
| 60 | 58 | . $class . '::$' . $property . '. ' . static::ERROR_REASON, |
| 61 | 59 | 0, |
@@ -30,15 +30,13 @@ |
||
| 30 | 30 | * @param string $parameter The name of the missing parameter |
| 31 | 31 | * @param Throwable The exception which caused this |
| 32 | 32 | */ |
| 33 | - public function __construct |
|
| 34 | - ( |
|
| 33 | + public function __construct( |
|
| 35 | 34 | string $class, |
| 36 | 35 | string $parameter, |
| 37 | 36 | Throwable $previous = null |
| 38 | 37 | ) |
| 39 | 38 | { |
| 40 | - parent::__construct |
|
| 41 | - ( |
|
| 39 | + parent::__construct( |
|
| 42 | 40 | 'Missing required parameter in constructor. ' |
| 43 | 41 | . $class . ' requires a value for ' . $parameter, |
| 44 | 42 | 0, |
@@ -32,8 +32,7 @@ discard block |
||
| 32 | 32 | * @param string $got The type that was provided |
| 33 | 33 | * @param Exception $previous The exception which caused this |
| 34 | 34 | */ |
| 35 | - public function __construct |
|
| 36 | - ( |
|
| 35 | + public function __construct( |
|
| 37 | 36 | string $class, |
| 38 | 37 | string $property, |
| 39 | 38 | string $expected, |
@@ -41,10 +40,9 @@ discard block |
||
| 41 | 40 | Exception $previous = null |
| 42 | 41 | ) |
| 43 | 42 | { |
| 44 | - parent::__construct |
|
| 45 | - ( |
|
| 43 | + parent::__construct( |
|
| 46 | 44 | 'Tried to set an illegal property type for ' |
| 47 | - . $class .'::$' . $property . '. Excpected ' . $expected |
|
| 45 | + . $class . '::$' . $property . '. Excpected ' . $expected |
|
| 48 | 46 | . ', got ' . $got, |
| 49 | 47 | 0, |
| 50 | 48 | $previous |
@@ -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 | ); |
@@ -78,8 +78,7 @@ discard block |
||
| 78 | 78 | * @param PHPNativeReflectionClass $reflect |
| 79 | 79 | * @param ReflectionCompositeProviderInterface $provider |
| 80 | 80 | */ |
| 81 | - public function __construct |
|
| 82 | - ( |
|
| 81 | + public function __construct( |
|
| 83 | 82 | PHPNativeReflectionClass $reflect, |
| 84 | 83 | ReflectionCompositeProviderInterface $provider |
| 85 | 84 | ) |
@@ -117,13 +116,11 @@ discard block |
||
| 117 | 116 | $file = (new ReflectionFileFactory($fileName))->build(); |
| 118 | 117 | $this->accessor->setRawValue('file', $file); |
| 119 | 118 | |
| 120 | - $this->accessor->setRawValue |
|
| 121 | - ( |
|
| 119 | + $this->accessor->setRawValue( |
|
| 122 | 120 | 'classname', |
| 123 | 121 | $this->reflector->name |
| 124 | 122 | ); |
| 125 | - $this->accessor->setRawValue |
|
| 126 | - ( |
|
| 123 | + $this->accessor->setRawValue( |
|
| 127 | 124 | 'namespace', |
| 128 | 125 | $file->namespaces[$this->reflector->getNamespaceName()] |
| 129 | 126 | ); |
@@ -146,8 +143,7 @@ discard block |
||
| 146 | 143 | $size = count($this->reflector->{'get' . $name}()); |
| 147 | 144 | foreach ($prefixes as $prefix) |
| 148 | 145 | { |
| 149 | - $this->accessor->setRawValue |
|
| 150 | - ( |
|
| 146 | + $this->accessor->setRawValue( |
|
| 151 | 147 | $prefix . $name, |
| 152 | 148 | new FixedList($size) |
| 153 | 149 | ); |
@@ -177,8 +173,7 @@ discard block |
||
| 177 | 173 | * @param bool $checkFile |
| 178 | 174 | * @param string $singular |
| 179 | 175 | */ |
| 180 | - protected function addItems |
|
| 181 | - ( |
|
| 176 | + protected function addItems( |
|
| 182 | 177 | string $name, |
| 183 | 178 | bool $checkFile, |
| 184 | 179 | string $signular |
@@ -209,8 +204,7 @@ discard block |
||
| 209 | 204 | new $factory($item), |
| 210 | 205 | $item |
| 211 | 206 | ); |
| 212 | - $this->accessor->rawAddToValue |
|
| 213 | - ( |
|
| 207 | + $this->accessor->rawAddToValue( |
|
| 214 | 208 | 'local' . ucfirst($name), |
| 215 | 209 | $item |
| 216 | 210 | ); |
@@ -227,8 +221,7 @@ discard block |
||
| 227 | 221 | * @param PHPNativeReflectionClass $reflect |
| 228 | 222 | * @param string $method |
| 229 | 223 | */ |
| 230 | - protected function addInheritance |
|
| 231 | - ( |
|
| 224 | + protected function addInheritance( |
|
| 232 | 225 | string $group, |
| 233 | 226 | PHPNativeReflectionClass $reflect, |
| 234 | 227 | string $method = 'rawAddToValue' |
@@ -248,15 +241,13 @@ discard block |
||
| 248 | 241 | * @param ReflectionPropertyFactory $factory |
| 249 | 242 | * @return ReflectionProperty |
| 250 | 243 | */ |
| 251 | - protected function buildProperty |
|
| 252 | - ( |
|
| 244 | + protected function buildProperty( |
|
| 253 | 245 | ReflectionPropertyFactory $factory, |
| 254 | 246 | PHPNativeReflectionProperty $reflect |
| 255 | 247 | ) |
| 256 | 248 | : ReflectionProperty |
| 257 | 249 | { |
| 258 | - return $factory->build |
|
| 259 | - ( |
|
| 250 | + return $factory->build( |
|
| 260 | 251 | $this->object, |
| 261 | 252 | $this->reflector |
| 262 | 253 | ->getDefaultProperties()[$reflect->getName()] |
@@ -63,8 +63,7 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | protected function parseDocComment(array $acceptedParams) |
| 65 | 65 | { |
| 66 | - preg_match_all |
|
| 67 | - ( |
|
| 66 | + preg_match_all( |
|
| 68 | 67 | '/^' |
| 69 | 68 | . '[ \t]*\*[ \t]*' |
| 70 | 69 | . '@([a-zA-Z]+)' |
@@ -81,8 +80,7 @@ discard block |
||
| 81 | 80 | |
| 82 | 81 | if (isset($acceptedParams[$name])) |
| 83 | 82 | { |
| 84 | - call_user_func |
|
| 85 | - ( |
|
| 83 | + call_user_func( |
|
| 86 | 84 | array($this, $acceptedParams[$name]), |
| 87 | 85 | $name, $value |
| 88 | 86 | ); |
@@ -98,7 +96,7 @@ discard block |
||
| 98 | 96 | */ |
| 99 | 97 | protected function setBool($name, $value) |
| 100 | 98 | { |
| 101 | - switch(strtolower($value)) |
|
| 99 | + switch (strtolower($value)) |
|
| 102 | 100 | { |
| 103 | 101 | case '': |
| 104 | 102 | case 'true': |