rector/rules/DowngradePhp72/Contract/Rector/DowngradeTypeRectorInterface.php
Tomas Votruba d56e7982d0 Updated Rector to commit dedd4b55fe
dedd4b55fe make node_helper.php safe for similar names
2021-05-09 20:15:43 +00:00

13 lines
224 B
PHP

<?php
declare (strict_types=1);
namespace Rector\DowngradePhp72\Contract\Rector;
interface DowngradeTypeRectorInterface
{
/**
* Name of the type to remove
*/
public function getTypeToRemove() : string;
}