rector/rules/Defluent/Contract/ValueObject/RootExprAwareInterface.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;
}