@@ -37,12 +37,12 @@ |
||
37 | 37 | public function getNode(): Node\Attribute |
38 | 38 | { |
39 | 39 | if ( |
40 | - ! $this->reflector instanceof ReflectionClass && |
|
41 | - ! $this->reflector instanceof ReflectionMethod && |
|
42 | - ! $this->reflector instanceof ReflectionProperty && |
|
43 | - ! $this->reflector instanceof ReflectionClassConstant && |
|
44 | - ! $this->reflector instanceof ReflectionFunction && |
|
45 | - ! $this->reflector instanceof ReflectionParameter) { |
|
40 | + !$this->reflector instanceof ReflectionClass && |
|
41 | + !$this->reflector instanceof ReflectionMethod && |
|
42 | + !$this->reflector instanceof ReflectionProperty && |
|
43 | + !$this->reflector instanceof ReflectionClassConstant && |
|
44 | + !$this->reflector instanceof ReflectionFunction && |
|
45 | + !$this->reflector instanceof ReflectionParameter) { |
|
46 | 46 | throw new ReflectionException(sprintf('attribute node not available at ', $this->reflector::class)); |
47 | 47 | } |
48 | 48 |