mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 05:15:04 +01:00
13 lines
186 B
PHP
13 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Rector\Defluent\Contract\ValueObject;
|
||
|
|
||
|
use PhpParser\Node\Expr;
|
||
|
|
||
|
interface RootExprAwareInterface
|
||
|
{
|
||
|
public function getRootExpr(): Expr;
|
||
|
}
|