rector/rules/Php80/Contract/ValueObject/AnnotationToAttributeInterface.php
Tomas Votruba d2c2df7ac2 Updated Rector to commit b8549f547ab72234078416e53f62ba16ab8582c6
b8549f547a [PHP 8.0] Add NestedAnnotationToAttributeRector (#2781)
2022-08-18 17:55:50 +00:00

11 lines
213 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\Contract\ValueObject;
interface AnnotationToAttributeInterface
{
public function getTag() : string;
public function getAttributeClass() : string;
}