mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-30 04:29:15 +01:00
Make Node\Expr\BinOp an abstract class
Only the children should be used ...
This commit is contained in:
parent
9689763e20
commit
a710f32a6a
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user