Skip to content

Commit dd950b4

Browse files
Merge branch '2.7' into 2.8
* 2.7: (22 commits) Tests and fix for issue in array model data in EntityType field with multiple=true [Form] Fixed PercentToLocalizedStringTransformer to accept both comma and dot as decimal separator, if possible removed useless PHPDoc [Form] Fix FormInterface::submit() annotation PdoSessionHandler: fix advisory lock for pgsql when session.sid_bits_per_character > 4 HttpCache does not consider ESI resources in HEAD requests Fix translation for "This field was not expected" [Routing] Enhance Route(Collection) docblocks Added improvement for accuracy in MoneyToLocalizedStringTransformer. Removed unused private property Use correct verb form in the pull request template Use PHP_MAXPATHLEN in Filesystem. Added null as explicit return type (?TokenInterface) [FrameworkBundle] Fix Routing\DelegatingLoader Render all line breaks according to the exception message [Form] Fix phpdoc [DI] remove confusing code [Form] Fixed GroupSequence with "constraints" option [Validator] Clarify UUID validator behavior [Filesystem] Fixed makePathRelative ...
2 parents 821ecdc + 2ae172a commit dd950b4

File tree

7 files changed

+0
-14
lines changed

7 files changed

+0
-14
lines changed

Expression.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class Expression
2121
protected $expression;
2222

2323
/**
24-
* Constructor.
25-
*
2624
* @param string $expression An expression
2725
*/
2826
public function __construct($expression)

ExpressionFunction.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ class ExpressionFunction
3535
private $evaluator;
3636

3737
/**
38-
* Constructor.
39-
*
4038
* @param string $name The function name
4139
* @param callable $compiler A callable able to compile the function
4240
* @param callable $evaluator A callable able to evaluate the function

Node/Node.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class Node
2424
public $attributes = array();
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param array $nodes An array of nodes
3028
* @param array $attributes An array of attributes
3129
*/

ParsedExpression.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ class ParsedExpression extends Expression
2323
private $nodes;
2424

2525
/**
26-
* Constructor.
27-
*
2826
* @param string $expression An expression
2927
* @param Node $nodes A Node representing the expression
3028
*/

SerializedParsedExpression.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class SerializedParsedExpression extends ParsedExpression
2121
private $nodes;
2222

2323
/**
24-
* Constructor.
25-
*
2624
* @param string $expression An expression
2725
* @param string $nodes The serialized nodes for the expression
2826
*/

Token.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ class Token
3030
const PUNCTUATION_TYPE = 'punctuation';
3131

3232
/**
33-
* Constructor.
34-
*
3533
* @param string $type The type of the token (self::*_TYPE)
3634
* @param string $value The token value
3735
* @param int $cursor The cursor position in the source

TokenStream.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ class TokenStream
2525
private $expression;
2626

2727
/**
28-
* Constructor.
29-
*
3028
* @param array $tokens An array of tokens
3129
* @param string $expression
3230
*/

0 commit comments

Comments
 (0)