Completed
Push — master ( 9de510...c7abd5 )
by Alexander
22:17 queued 11s
created
src/Aop/Framework/ClassFieldAccess.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     /**
149 149
      * Invokes current field access with all interceptors
150 150
      *
151
-     * @param object $instance Instance of object
151
+     * @param \Go\Proxy\Part\PropertyInterceptionTrait $instance Instance of object
152 152
      * @param integer $accessType Type of access: READ or WRITE
153 153
      * @param mixed $originalValue Original value of property
154 154
      * @param mixed $newValue New value to set
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     /**
203 203
      * Returns the static part of this joinpoint.
204 204
      *
205
-     * @return object
205
+     * @return AnnotatedReflectionProperty
206 206
      */
207 207
     final public function getStaticPart()
208 208
     {
Please login to merge, or discard this patch.
src/Aop/Framework/ReflectionFunctionInvocation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     /**
80 80
      * Returns the static part of this joinpoint.
81 81
      *
82
-     * @return object
82
+     * @return ReflectionFunction
83 83
      */
84 84
     public function getStaticPart()
85 85
     {
Please login to merge, or discard this patch.
src/Core/AbstractAspectLoaderExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Instrument/ClassLoading/CachePathManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Instrument/Transformer/WeavingTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.