Files
animethemes-server/app/GraphQL/Attributes/Resolvers/UsePaginateDirective.php
T
2025-08-06 04:56:17 -03:00

17 lines
284 B
PHP

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