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 EasyWeChat\OpenWork\Contracts; use EasyWeChat\..
Decoded Output download
<?php
declare(strict_types=1);
namespace EasyWeChat\OpenWork\Contracts;
use EasyWeChat\Kernel\Contracts\AccessToken;
use EasyWeChat\Kernel\Contracts\Config;
use EasyWeChat\Kernel\Contracts\Server;
use EasyWeChat\Kernel\Encryptor;
use EasyWeChat\Kernel\HttpClient\AccessTokenAwareClient;
use Psr\Http\Message\ServerRequestInterface;
use Psr\SimpleCache\CacheInterface;
use Symfony\Contracts\HttpClient\HttpClientInterface;
interface Application
{
public function getAccount(): Account;
public function getEncryptor(): Encryptor;
public function getSuiteEncryptor(): Encryptor;
public function getServer(): Server;
public function getRequest(): ServerRequestInterface;
public function getClient(): AccessTokenAwareClient;
public function getHttpClient(): HttpClientInterface;
public function getConfig(): Config;
public function getProviderAccessToken(): AccessToken;
public function getCache(): CacheInterface;
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace EasyWeChat\OpenWork\Contracts;
use EasyWeChat\Kernel\Contracts\AccessToken;
use EasyWeChat\Kernel\Contracts\Config;
use EasyWeChat\Kernel\Contracts\Server;
use EasyWeChat\Kernel\Encryptor;
use EasyWeChat\Kernel\HttpClient\AccessTokenAwareClient;
use Psr\Http\Message\ServerRequestInterface;
use Psr\SimpleCache\CacheInterface;
use Symfony\Contracts\HttpClient\HttpClientInterface;
interface Application
{
public function getAccount(): Account;
public function getEncryptor(): Encryptor;
public function getSuiteEncryptor(): Encryptor;
public function getServer(): Server;
public function getRequest(): ServerRequestInterface;
public function getClient(): AccessTokenAwareClient;
public function getHttpClient(): HttpClientInterface;
public function getConfig(): Config;
public function getProviderAccessToken(): AccessToken;
public function getCache(): CacheInterface;
}
Function Calls
None |
Stats
MD5 | ab55dfddc077f0f3463ebf4f5bab82b7 |
Eval Count | 0 |
Decode Time | 89 ms |