b8f88269b682f465abc08cb01ba15cf87b470d2f
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / AssignOp / ShiftLeft.php
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 }