Skip to content

Commit fa324a5

Browse files
Merge branch '5.4' into 6.0
* 5.4: [Serializer] cs fix Cleanup more `@return` annotations [Form] Fix phpdoc on FormBuilderInterface
2 parents ee51bed + c296036 commit fa324a5

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

Compiler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ public function getFunction(string $name)
3535

3636
/**
3737
* Gets the current PHP code after compilation.
38-
*
39-
* @return string The PHP code
4038
*/
4139
public function getSource(): string
4240
{

ExpressionLanguage.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ public function __construct(CacheItemPoolInterface $cache = null, array $provide
4545

4646
/**
4747
* Compiles an expression source code.
48-
*
49-
* @return string The compiled PHP source code
5048
*/
5149
public function compile(Expression|string $expression, array $names = []): string
5250
{
@@ -55,8 +53,6 @@ public function compile(Expression|string $expression, array $names = []): strin
5553

5654
/**
5755
* Evaluate an expression.
58-
*
59-
* @return mixed The result of the evaluation of the expression
6056
*/
6157
public function evaluate(Expression|string $expression, array $values = []): mixed
6258
{

Parser.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ public function __construct(array $functions)
8686
* variable 'container' can be used in the expression
8787
* but the compiled code will use 'this'.
8888
*
89-
* @return Node\Node A node tree
90-
*
9189
* @throws SyntaxError
9290
*/
9391
public function parse(TokenStream $stream, array $names = []): Node\Node

0 commit comments

Comments
 (0)