mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-21 11:56:06 +02:00
16 lines
214 B
PHP
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,
|
|
) {}
|
|
}
|