Completed
Pull Request — master (#388)
by Nikola
05:39
created
src/Instrument/Transformer/WeavingTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@
 block discarded – undo
253 253
      * Save AOP proxy to the separate file anr returns the php source code for inclusion
254 254
      *
255 255
      * @param ReflectionClass $class Original class reflection
256
-     * @param string|ClassProxy $child
256
+     * @param ClassProxy $child
257 257
      *
258 258
      * @return string
259 259
      */
Please login to merge, or discard this patch.
src/Aop/Framework/ClassFieldAccess.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     /**
159 159
      * Invokes current field access with all interceptors
160 160
      *
161
-     * @param object $instance Instance of object
161
+     * @param \Go\Proxy\PropertyInterceptionTrait $instance Instance of object
162 162
      * @param integer $accessType Type of access: READ or WRITE
163 163
      * @param mixed $originalValue Original value of property
164 164
      * @param mixed $newValue New value to set
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     /**
213 213
      * Returns the static part of this joinpoint.
214 214
      *
215
-     * @return object
215
+     * @return ReflectionProperty
216 216
      */
217 217
     final public function getStaticPart()
218 218
     {
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
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      *
61 61
      * @param Aspect $aspect Instance of current aspect
62 62
      * @param Annotation\BaseAnnotation|Annotation\BaseInterceptor $metaInformation
63
-     * @param mixed|\ReflectionMethod|\ReflectionProperty $reflection Reflection of point
63
+     * @param \Reflector $reflection Reflection of point
64 64
      *
65 65
      * @throws \UnexpectedValueException if there was an error during parsing
66 66
      * @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
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 
116 116
     /**
117 117
      * @param string $resource
118
-     * @return bool|string
118
+     * @return false|string
119 119
      */
120 120
     public function getCachePathForResource(string $resource)
121 121
     {
Please login to merge, or discard this patch.
src/Proxy/AbstractProxy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * Returns list of string representation of parameters
82 82
      *
83
-     * @param array|ReflectionParameter[] $parameters List of parameters
83
+     * @param ReflectionParameter[] $parameters List of parameters
84 84
      *
85 85
      * @return array|string[]
86 86
      */
Please login to merge, or discard this patch.
src/Aop/Support/AndPointFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * And constructor
37 37
      *
38
-     * @param PointFilter[] $filters List of filters to combine
38
+     * @param PointFilter $filters List of filters to combine
39 39
      */
40 40
     public function __construct(PointFilter ...$filters)
41 41
     {
Please login to merge, or discard this patch.
src/Aop/Support/OrPointFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Or constructor
37 37
      *
38
-     * @param PointFilter[] $filters List of filters to combine
38
+     * @param PointFilter $filters List of filters to combine
39 39
      */
40 40
     public function __construct(PointFilter ...$filters)
41 41
     {
Please login to merge, or discard this patch.