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\OpenPlatform; use EasyWeChat\OpenPl..

Decoded Output download

<?php

declare(strict_types=1);

namespace EasyWeChat\OpenPlatform;

use EasyWeChat\OpenPlatform\Contracts\Account as AccountInterface;

class Account implements AccountInterface
{
    public function __construct(
        protected string $appId,
        protected string $secret,
        protected string $token,
        protected string $aesKey
    ) {
    }

    public function getAppId(): string
    {
        return $this->appId;
    }

    public function getSecret(): string
    {
        return $this->secret;
    }

    public function getToken(): string
    {
        return $this->token;
    }

    public function getAesKey(): string
    {
        return $this->aesKey;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace EasyWeChat\OpenPlatform;

use EasyWeChat\OpenPlatform\Contracts\Account as AccountInterface;

class Account implements AccountInterface
{
    public function __construct(
        protected string $appId,
        protected string $secret,
        protected string $token,
        protected string $aesKey
    ) {
    }

    public function getAppId(): string
    {
        return $this->appId;
    }

    public function getSecret(): string
    {
        return $this->secret;
    }

    public function getToken(): string
    {
        return $this->token;
    }

    public function getAesKey(): string
    {
        return $this->aesKey;
    }
}

Function Calls

None

Variables

None

Stats

MD5 48120d104c5b6025861c27f7c23824ef
Eval Count 0
Decode Time 78 ms