mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-05-05 21:05:16 +02:00
The formatting in this project has become something of a mess, because it changed over time. Add a CS fixer config and reformat to the desired style, which is PSR-12, but with sane brace placement.
16 lines
303 B
PHP
16 lines
303 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr\BinaryOp;
|
|
|
|
use PhpParser\Node\Expr\BinaryOp;
|
|
|
|
class Concat extends BinaryOp {
|
|
public function getOperatorSigil(): string {
|
|
return '.';
|
|
}
|
|
|
|
public function getType(): string {
|
|
return 'Expr_BinaryOp_Concat';
|
|
}
|
|
}
|