mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-21 11:56:06 +02:00
11 lines
150 B
PHP
11 lines
150 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
class UseSearchDirective {}
|