Skip to content

Commit 3953d3e

Browse files
Cleanup more @return annotations
1 parent ed613a5 commit 3953d3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Inflector/InflectorInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface InflectorInterface
1818
*
1919
* If the method can't determine the form with certainty, several possible singulars are returned.
2020
*
21-
* @return string[] An array of possible singular forms
21+
* @return string[]
2222
*/
2323
public function singularize(string $plural): array;
2424

@@ -27,7 +27,7 @@ public function singularize(string $plural): array;
2727
*
2828
* If the method can't determine the form with certainty, several possible plurals are returned.
2929
*
30-
* @return string[] An array of possible plural forms
30+
* @return string[]
3131
*/
3232
public function pluralize(string $singular): array;
3333
}

0 commit comments

Comments
 (0)