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
/
SeoSocialNetworks.php
/
/
<?php declare(strict_types=1); namespace ether\seo\gql; use craft\gql\GqlEntityRegistry; use GraphQL\Type\Definition\ObjectType; /** * Class SeoSocialNetworks * * @package ether\seo\gql */ class SeoSocialNetworks extends \craft\gql\base\ObjectType { /** * @return string */ public static function getName(): string { return "Ether_" . (new \ReflectionClass(static::class))->getShortName(); } /** * @return ObjectType * @throws \craft\errors\GqlException */ public static function getType(): ObjectType { if ($type = GqlEntityRegistry::getEntity(static::class)) { return $type; } return GqlEntityRegistry::createEntity(static::class, new \GraphQL\Type\Definition\ObjectType([ 'name' => static::getName(), 'fields' => [ 'twitter' => SeoSocialData::getType(), 'facebook' => SeoSocialData::getType() ] ])); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/iio/../ether/seo/src/gql/SeoSocialNetworks.php