rector/packages/PhpAttribute/Exception/InvalidNestedAttributeException.php
Tomas Votruba 12927071ac Updated Rector to commit f83d7441580e6175556328ac94dc7f128d2344aa
f83d744158 [PHP 8.1] Add nested attributes support - part #1 (#1266)
2021-11-20 10:45:53 +00:00

10 lines
157 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PhpAttribute\Exception;
use Exception;
final class InvalidNestedAttributeException extends \Exception
{
}