@@ -50,7 +50,7 @@ |
||
50 | 50 | /** |
51 | 51 | * General method for parsing pointcuts |
52 | 52 | * |
53 | - * @param mixed|\ReflectionMethod|\ReflectionProperty $reflection Reflection of point |
|
53 | + * @param \Reflector $reflection Reflection of point |
|
54 | 54 | * |
55 | 55 | * @throws \UnexpectedValueException if there was an error during parsing |
56 | 56 | * @return Pointcut|PointFilter |
@@ -112,7 +112,7 @@ |
||
112 | 112 | /** |
113 | 113 | * Returns cache path for requested file name |
114 | 114 | * |
115 | - * @return bool|string |
|
115 | + * @return false|string |
|
116 | 116 | */ |
117 | 117 | public function getCachePathForResource(string $resource) |
118 | 118 | { |
@@ -278,7 +278,7 @@ |
||
278 | 278 | /** |
279 | 279 | * Utility method to load and register unloaded aspects |
280 | 280 | * |
281 | - * @param array $unloadedAspects List of unloaded aspects |
|
281 | + * @param Aspect[] $unloadedAspects List of unloaded aspects |
|
282 | 282 | */ |
283 | 283 | private function loadAndRegisterAspects(array $unloadedAspects): void |
284 | 284 | { |
@@ -155,7 +155,7 @@ |
||
155 | 155 | /** |
156 | 156 | * Invokes current field access with all interceptors |
157 | 157 | * |
158 | - * @param object $instance Instance of object |
|
158 | + * @param \Go\Proxy\Part\PropertyInterceptionTrait $instance Instance of object |
|
159 | 159 | * @param integer $accessType Type of access: READ or WRITE |
160 | 160 | * @param mixed $originalValue Original value of property |
161 | 161 | * @param mixed $newValue New value to set |