uawdijnntqw1x1x1
IP : 216.73.216.8
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
iio
/
..
/
ether
/
seo
/
src
/
gql
/
SeoAdvanced.php
/
/
<?php declare(strict_types=1); namespace ether\seo\gql; use craft\gql\GqlEntityRegistry; use GraphQL\Type\Definition\ObjectType; use GraphQL\Type\Definition\Type; /** * Class SeoAdvanced * * @package ether\seo\gql */ class SeoAdvanced extends \craft\gql\base\ObjectType { /** * @return string */ public static function getName(): string { return "Ether_" . (new \ReflectionClass(static::class))->getShortName(); } /** * @return ObjectType */ public static function getType(): ObjectType { if ($type = GqlEntityRegistry::getEntity(self::class)) { return $type; } return GqlEntityRegistry::createEntity(self::class, new \GraphQL\Type\Definition\ObjectType([ 'name' => static::getName(), 'description' => 'Robots and canonical data', 'fields' => [ 'robots' => Type::listOf(Type::string()), 'canonical' => Type::string() ] ])); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/iio/../ether/seo/src/gql/SeoAdvanced.php