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; use GraphQL\Executor\Promise\Adapter\S..
Decoded Output download
<?php declare(strict_types=1);
namespace GraphQL;
use GraphQL\Executor\Promise\Adapter\SyncPromise;
/**
* @phpstan-import-type Executor from SyncPromise
*/
class Deferred extends SyncPromise
{
/** @param Executor $executor */
public static function create(callable $executor): self
{
return new self($executor);
}
/** @param Executor $executor */
public function __construct(callable $executor)
{
parent::__construct($executor);
}
}
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1);
namespace GraphQL;
use GraphQL\Executor\Promise\Adapter\SyncPromise;
/**
* @phpstan-import-type Executor from SyncPromise
*/
class Deferred extends SyncPromise
{
/** @param Executor $executor */
public static function create(callable $executor): self
{
return new self($executor);
}
/** @param Executor $executor */
public function __construct(callable $executor)
{
parent::__construct($executor);
}
}
Function Calls
None |
Stats
MD5 | bb6ab2c95dd2b8aed2b5ee8a24d481ed |
Eval Count | 0 |
Decode Time | 75 ms |