mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-21 03:46:13 +02:00
18 lines
383 B
PHP
18 lines
383 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Scalars;
|
|
|
|
use GraphQL\Type\Definition\Type;
|
|
use MLL\GraphQLScalars\MixedScalar as GraphQLScalarsMixedScalar;
|
|
use Rebing\GraphQL\Support\Contracts\TypeConvertible;
|
|
|
|
class MixedScalar extends GraphQLScalarsMixedScalar implements TypeConvertible
|
|
{
|
|
public function toType(): Type
|
|
{
|
|
return new MixedScalar();
|
|
}
|
|
}
|