File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1306,7 +1306,7 @@ The @param tag MAY have a multi-line description and does not need explicit
1306
1306
delimiting.
1307
1307
1308
1308
It is RECOMMENDED when documenting to use this tag with every function and
1309
- method. Exceptions to this recommendation are:
1309
+ method.
1310
1310
1311
1311
This tag MUST NOT occur more than once per parameter in a "PHPDoc" and is
1312
1312
limited to "Structural Elements" of type method or function.
@@ -1317,7 +1317,7 @@ limited to "Structural Elements" of type method or function.
1317
1317
/**
1318
1318
* Counts the number of items in the provided array.
1319
1319
*
1320
- * @param mixed[] $array Array structure to count the elements of.
1320
+ * @param mixed[] $items Array structure to count the elements of.
1321
1321
*
1322
1322
* @return int Returns the number of elements.
1323
1323
*/
@@ -1328,7 +1328,7 @@ function count(array $items)
1328
1328
```
1329
1329
1330
1330
The following example demonstrates the use of an "Inline PHPDoc" to document
1331
- an option array with 2 elements: 'required' and 'label'.
1331
+ an option array with two elements: 'required' and 'label'.
1332
1332
1333
1333
``` php
1334
1334
/**
You can’t perform that action at this time.
0 commit comments