mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-19 07:40:49 +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;
|
|
}
|