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 FragmentSpreadNode ..
Decoded Output download
<?php declare(strict_types=1);
namespace GraphQL\Language\AST;
class FragmentSpreadNode extends Node implements SelectionNode
{
public string $kind = NodeKind::FRAGMENT_SPREAD;
public NameNode $name;
/** @var NodeList<DirectiveNode> */
public NodeList $directives;
public function __construct(array $vars)
{
parent::__construct($vars);
$this->directives ??= new NodeList([]);
}
}
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1);
namespace GraphQL\Language\AST;
class FragmentSpreadNode extends Node implements SelectionNode
{
public string $kind = NodeKind::FRAGMENT_SPREAD;
public NameNode $name;
/** @var NodeList<DirectiveNode> */
public NodeList $directives;
public function __construct(array $vars)
{
parent::__construct($vars);
$this->directives ??= new NodeList([]);
}
}
Function Calls
None |
Stats
MD5 | ae32ee5b46c65a35801bdd6e1ef18849 |
Eval Count | 0 |
Decode Time | 72 ms |