mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
16 lines
240 B
PHP
16 lines
240 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Attributes\Resolvers;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
class UseAuthDirective
|
|
{
|
|
public function __construct(
|
|
public bool $shouldUse = true,
|
|
) {}
|
|
}
|