Files
animethemes-server/app/GraphQL/Attributes/Resolvers/UseAllDirective.php
T

16 lines
239 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Attributes\Resolvers;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class UseAllDirective
{
public function __construct(
public bool $shouldUse = true,
) {}
}