mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
beba7d6efe
1249d947f4
Try php-scoper 0.17 (#2368)
23 lines
659 B
PHP
23 lines
659 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Php80\Contract;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\Node\Expr\BinaryOp\Identical;
|
|
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
|
|
use PhpParser\Node\Expr\BooleanNot;
|
|
use PhpParser\Node\Expr\FuncCall;
|
|
use Rector\Php80\ValueObject\StrStartsWith;
|
|
interface StrStartWithMatchAndRefactorInterface
|
|
{
|
|
/**
|
|
* @param \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical $binaryOp
|
|
*/
|
|
public function match($binaryOp) : ?StrStartsWith;
|
|
/**
|
|
* @return FuncCall|BooleanNot|null
|
|
*/
|
|
public function refactorStrStartsWith(StrStartsWith $strStartsWith) : ?Node;
|
|
}
|