1: | <?php declare(strict_types=1); |
2: | |
3: | namespace PhpParser\Node\Expr\AssignOp; |
4: | |
5: | use PhpParser\Node\Expr\AssignOp; |
6: | |
7: | class ShiftLeft extends AssignOp |
8: | { |
9: | public function getType() : string { |
10: | return 'Expr_AssignOp_ShiftLeft'; |
11: | } |
12: | } |
13: | |