@@ -85,6 +85,7 @@ public function getDocblock($reflectionClass = 'Zend_Reflection_Docblock')
85
85
* @param bool $includeDocComment
86
86
* @return int
87
87
*/
88
+ #[ReturnTypeWillChange]
88
89
public function getStartLine ($ includeDocComment = false )
89
90
{
90
91
if ($ includeDocComment ) {
@@ -118,6 +119,7 @@ public function getContents($includeDocblock = true)
118
119
* @param string $reflectionClass Name of reflection class to use
119
120
* @return array Array of Zend_Reflection_Class
120
121
*/
122
+ #[ReturnTypeWillChange]
121
123
public function getInterfaces ($ reflectionClass = 'Zend_Reflection_Class ' )
122
124
{
123
125
$ phpReflections = parent ::getInterfaces ();
@@ -142,6 +144,7 @@ public function getInterfaces($reflectionClass = 'Zend_Reflection_Class')
142
144
* @param string $reflectionClass Reflection class to utilize
143
145
* @return Zend_Reflection_Method
144
146
*/
147
+ #[ReturnTypeWillChange]
145
148
public function getMethod ($ name , $ reflectionClass = 'Zend_Reflection_Method ' )
146
149
{
147
150
$ phpReflection = parent ::getMethod ($ name );
@@ -163,6 +166,7 @@ public function getMethod($name, $reflectionClass = 'Zend_Reflection_Method')
163
166
* @param string $reflectionClass Reflection class to use for methods
164
167
* @return array Array of Zend_Reflection_Method objects
165
168
*/
169
+ #[ReturnTypeWillChange]
166
170
public function getMethods ($ filter = -1 , $ reflectionClass = 'Zend_Reflection_Method ' )
167
171
{
168
172
$ phpReflections = parent ::getMethods ($ filter );
@@ -186,6 +190,7 @@ public function getMethods($filter = -1, $reflectionClass = 'Zend_Reflection_Met
186
190
* @param string $reflectionClass Name of Reflection class to use
187
191
* @return Zend_Reflection_Class
188
192
*/
193
+ #[ReturnTypeWillChange]
189
194
public function getParentClass ($ reflectionClass = 'Zend_Reflection_Class ' )
190
195
{
191
196
$ phpReflection = parent ::getParentClass ();
@@ -209,6 +214,7 @@ public function getParentClass($reflectionClass = 'Zend_Reflection_Class')
209
214
* @param string $reflectionClass Name of reflection class to use
210
215
* @return Zend_Reflection_Property
211
216
*/
217
+ #[ReturnTypeWillChange]
212
218
public function getProperty ($ name , $ reflectionClass = 'Zend_Reflection_Property ' )
213
219
{
214
220
$ phpReflection = parent ::getProperty ($ name );
@@ -228,6 +234,7 @@ public function getProperty($name, $reflectionClass = 'Zend_Reflection_Property'
228
234
* @param string $reflectionClass Name of reflection class to use
229
235
* @return array Array of Zend_Reflection_Property
230
236
*/
237
+ #[ReturnTypeWillChange]
231
238
public function getProperties ($ filter = -1 , $ reflectionClass = 'Zend_Reflection_Property ' )
232
239
{
233
240
$ phpReflections = parent ::getProperties ($ filter );
0 commit comments