File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -163,10 +163,10 @@ array (size=2)
163
163
'emptyAnnotation' => boolean true
164
164
```
165
165
166
- For a specific method, just pass the method name :
166
+ For a specific method:
167
167
168
168
``` php
169
- $sayHelloAnnotations = $annotation->getMethodsAnnotations ('sayHello');
169
+ $sayHelloAnnotations = $annotation->getMethodAnnotations ('sayHello');
170
170
171
171
var_dump($sayHelloAnnotations);
172
172
```
@@ -206,10 +206,10 @@ array (size=3)
206
206
'var' => string 'int' (length=3)
207
207
```
208
208
209
- For a specific property, just pass the property name :
209
+ For a specific property:
210
210
211
211
``` php
212
- $nameAnnotations = $annotation->getPropertiesAnnotations ('name');
212
+ $nameAnnotations = $annotation->getPropertyAnnotations ('name');
213
213
214
214
var_dump($nameAnnotations);
215
215
```
You can’t perform that action at this time.
0 commit comments