Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace GraphQL\Language\AST; class ObjectTypeExtension..
Decoded Output download
<?php declare(strict_types=1);
namespace GraphQL\Language\AST;
class ObjectTypeExtensionNode extends Node implements TypeExtensionNode
{
public string $kind = NodeKind::OBJECT_TYPE_EXTENSION;
public NameNode $name;
/** @var NodeList<NamedTypeNode> */
public NodeList $interfaces;
/** @var NodeList<DirectiveNode> */
public NodeList $directives;
/** @var NodeList<FieldDefinitionNode> */
public NodeList $fields;
public function getName(): NameNode
{
return $this->name;
}
}
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1);
namespace GraphQL\Language\AST;
class ObjectTypeExtensionNode extends Node implements TypeExtensionNode
{
public string $kind = NodeKind::OBJECT_TYPE_EXTENSION;
public NameNode $name;
/** @var NodeList<NamedTypeNode> */
public NodeList $interfaces;
/** @var NodeList<DirectiveNode> */
public NodeList $directives;
/** @var NodeList<FieldDefinitionNode> */
public NodeList $fields;
public function getName(): NameNode
{
return $this->name;
}
}
Function Calls
None |
Stats
MD5 | 2145044cf0ae4b1c0a2d5eb269f0eb44 |
Eval Count | 0 |
Decode Time | 73 ms |