Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / GraphQL / Scalars / MetatagScalar.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\GraphQL\Scalars;
4
5 use Drupal\graphql\Plugin\GraphQL\Scalars\Internal\StringScalar;
6
7 /**
8  * Metatag module dummy type.
9  *
10  * Metatag module defines a custom data type that essentially is a string, but
11  * not called "string", which causes the GraphQL type system chokes.
12  *
13  * @GraphQLScalar(
14  *   id = "metatag",
15  *   name = "metatag",
16  *   type = "string"
17  * )
18  */
19 class MetatagScalar extends StringScalar {
20 }