Completed
Pull Request — master (#262)
by Boris
03:23 queued 58s
created
src/Aop/Support/DeclareParentsAdvisor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     /**
74 74
      * Returns an advice to apply
75 75
      *
76
-     * @return Advice|IntroductionInfo|null
76
+     * @return null|IntroductionInfo
77 77
      */
78 78
     public function getAdvice()
79 79
     {
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
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 
107 107
     /**
108 108
      * @param string $resource
109
-     * @return bool|string
109
+     * @return false|string
110 110
      */
111 111
     public function getCachePathForResource($resource)
112 112
     {
Please login to merge, or discard this patch.
src/Instrument/ClassLoading/SourceTransformingLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
     /**
125 125
      * Transforms source code by passing it through all transformers
126 126
      *
127
-     * @param StreamMetaData|null $metadata Metadata from stream
127
+     * @param StreamMetaData $metadata Metadata from stream
128 128
      * @return void|bool Return false if transformation should be stopped
129 129
      */
130 130
     public static function transformCode(StreamMetaData $metadata)
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
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     /**
89 89
      * Returns list of string representation of parameters
90 90
      *
91
-     * @param array|ReflectionParameter[] $parameters List of parameters
91
+     * @param ReflectionParameter[] $parameters List of parameters
92 92
      *
93 93
      * @return array
94 94
      */
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
@@ -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.