Skip to content

Commit 7fc1c5e

Browse files
Cleanup @return annotations
1 parent db856f4 commit 7fc1c5e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ExpressionFunctionProviderInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
interface ExpressionFunctionProviderInterface
1818
{
1919
/**
20-
* @return ExpressionFunction[] An array of Function instances
20+
* @return ExpressionFunction[]
2121
*/
2222
public function getFunctions();
2323
}

ExpressionLanguage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function evaluate($expression, array $values = [])
7272
*
7373
* @param Expression|string $expression The expression to parse
7474
*
75-
* @return ParsedExpression A ParsedExpression instance
75+
* @return ParsedExpression
7676
*/
7777
public function parse($expression, array $names)
7878
{

Lexer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Lexer
2121
/**
2222
* Tokenizes an expression.
2323
*
24-
* @return TokenStream A token stream instance
24+
* @return TokenStream
2525
*
2626
* @throws SyntaxError
2727
*/

0 commit comments

Comments
 (0)