rector/rules/Defluent/Contract/ValueObject/RootExprAwareInterface.php
2021-05-10 22:23:08 +00:00

11 lines
202 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Defluent\Contract\ValueObject;
use PhpParser\Node\Expr;
interface RootExprAwareInterface
{
public function getRootExpr() : \PhpParser\Node\Expr;
}