Skip to content

Commit 2ae172a

Browse files
committed
minor #24342 removed useless PHPDoc (OskarStark)
This PR was squashed before being merged into the 2.7 branch (closes #24342). Discussion ---------- removed useless PHPDoc | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no <!-- don't forget updating src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget updating UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | n/a Commits ------- 5ee9043d8b removed useless PHPDoc
2 parents 03c379f + e88074a commit 2ae172a

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)