unite-cms/unite-cms

View on GitHub
src/Bundle/CoreBundle/Field/Types/IntegerType.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace UniteCMS\CoreBundle\Field\Types;

use GraphQL\Type\Definition\Type;

class IntegerType extends AbstractFieldType
{
    const TYPE = 'integer';
    const GRAPHQL_INPUT_TYPE = Type::INT;
}