mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-25 08:14:29 +02:00
16 lines
237 B
PHP
16 lines
237 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Argument;
|
|
|
|
use GraphQL\Type\Definition\Type;
|
|
|
|
class PageArgument extends Argument
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('page', Type::int());
|
|
}
|
|
}
|