| 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: | public function getType(): string { | 
| 9: | return 'Expr_AssignOp_ShiftLeft'; | 
| 10: | } | 
| 11: | } | 
| 12: |  |