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)
163163 'emptyAnnotation' => boolean true
164164```
165165
166- For a specific method, just pass the method name :
166+ For a specific method:
167167
168168``` php
169- $sayHelloAnnotations = $annotation->getMethodsAnnotations ('sayHello');
169+ $sayHelloAnnotations = $annotation->getMethodAnnotations ('sayHello');
170170
171171var_dump($sayHelloAnnotations);
172172```
@@ -206,10 +206,10 @@ array (size=3)
206206 'var' => string 'int' (length=3)
207207```
208208
209- For a specific property, just pass the property name :
209+ For a specific property:
210210
211211``` php
212- $nameAnnotations = $annotation->getPropertiesAnnotations ('name');
212+ $nameAnnotations = $annotation->getPropertyAnnotations ('name');
213213
214214var_dump($nameAnnotations);
215215```
You can’t perform that action at this time.
0 commit comments