9a8d9873c081073f24dbef3a16662f216d7d53ad
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / BinaryOp / Concat.php
1 <?php declare(strict_types=1);
2
3 namespace PhpParser\Node\Expr\BinaryOp;
4
5 use PhpParser\Node\Expr\BinaryOp;
6
7 class Concat extends BinaryOp
8 {
9     public function getOperatorSigil() : string {
10         return '.';
11     }
12     
13     public function getType() : string {
14         return 'Expr_BinaryOp_Concat';
15     }
16 }