mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-07-25 08:11:22 +02:00
16 lines
300 B
PHP
16 lines
300 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr\BinaryOp;
|
|
|
|
use PhpParser\Node\Expr\BinaryOp;
|
|
|
|
class Pipe extends BinaryOp {
|
|
public function getOperatorSigil(): string {
|
|
return '|>';
|
|
}
|
|
|
|
public function getType(): string {
|
|
return 'Expr_BinaryOp_Pipe';
|
|
}
|
|
}
|