rector/rules/Defluent/Contract/ValueObject/RootExprAwareInterface.php

11 lines
186 B
PHP
Raw Normal View History

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