Skip to content

Commit

Permalink
removed useless PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark authored and fabpot committed Sep 30, 2017
1 parent 678b6fa commit e88074a
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 14 deletions.
2 changes: 0 additions & 2 deletions Expression.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ class Expression
protected $expression;

/**
* Constructor.
*
* @param string $expression An expression
*/
public function __construct($expression)
Expand Down
2 changes: 0 additions & 2 deletions ExpressionFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ class ExpressionFunction
private $evaluator;

/**
* Constructor.
*
* @param string $name The function name
* @param callable $compiler A callable able to compile the function
* @param callable $evaluator A callable able to evaluate the function
Expand Down
2 changes: 0 additions & 2 deletions Node/Node.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class Node
public $attributes = array();

/**
* Constructor.
*
* @param array $nodes An array of nodes
* @param array $attributes An array of attributes
*/
Expand Down
2 changes: 0 additions & 2 deletions ParsedExpression.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ class ParsedExpression extends Expression
private $nodes;

/**
* Constructor.
*
* @param string $expression An expression
* @param Node $nodes A Node representing the expression
*/
Expand Down
2 changes: 0 additions & 2 deletions SerializedParsedExpression.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ class SerializedParsedExpression extends ParsedExpression
private $nodes;

/**
* Constructor.
*
* @param string $expression An expression
* @param string $nodes The serialized nodes for the expression
*/
Expand Down
2 changes: 0 additions & 2 deletions Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ class Token
const PUNCTUATION_TYPE = 'punctuation';

/**
* Constructor.
*
* @param string $type The type of the token (self::*_TYPE)
* @param string $value The token value
* @param int $cursor The cursor position in the source
Expand Down
2 changes: 0 additions & 2 deletions TokenStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ class TokenStream
private $expression;

/**
* Constructor.
*
* @param array $tokens An array of tokens
* @param string $expression
*/
Expand Down

0 comments on commit e88074a

Please sign in to comment.