Make Node\Expr\BinOp an abstract class

Only the children should be used ...
This commit is contained in:
Nikita Popov 2015-01-17 23:38:59 +01:00
parent 9689763e20
commit a710f32a6a

View File

@ -8,7 +8,7 @@ use PhpParser\Node\Expr;
* @property Expr $left The left hand side expression
* @property Expr $right The right hand side expression
*/
class BinaryOp extends Expr
abstract class BinaryOp extends Expr
{
/**
* Constructs a bitwise and node.
@ -26,4 +26,4 @@ class BinaryOp extends Expr
$attributes
);
}
}
}