Files
animethemes-server/app/GraphQL/Attributes/Deprecated.php
T

16 lines
214 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_ALL)]
class Deprecated
{
public function __construct(
public string $reason,
) {}
}