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); /** * This file is part of Swoft. * * @link https://..

Decoded Output download

<?php declare(strict_types=1);
/**
 * This file is part of Swoft.
 *
 * @link     https://swoft.org
 * @document https://swoft.org/docs
 * @contact  [email protected]
 * @license  https://github.com/swoft-cloud/swoft/blob/master/LICENSE
 */

namespace App\Common;

use Swoft\Bean\Annotation\Mapping\Bean;
use function vdump;

/**
 * Class MyBean
 *
 * @package App\Common
 * @Bean()
 */
class MyBean
{
    public function myMethod(): array
    {
        vdump(__METHOD__);

        return ['hi'];
    }

    public function myMethod2(): string
    {
        return __METHOD__;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php declare(strict_types=1);
/**
 * This file is part of Swoft.
 *
 * @link     https://swoft.org
 * @document https://swoft.org/docs
 * @contact  [email protected]
 * @license  https://github.com/swoft-cloud/swoft/blob/master/LICENSE
 */

namespace App\Common;

use Swoft\Bean\Annotation\Mapping\Bean;
use function vdump;

/**
 * Class MyBean
 *
 * @package App\Common
 * @Bean()
 */
class MyBean
{
    public function myMethod(): array
    {
        vdump(__METHOD__);

        return ['hi'];
    }

    public function myMethod2(): string
    {
        return __METHOD__;
    }
}

Function Calls

None

Variables

None

Stats

MD5 ef65b40be8beafd5278939b39d77bfee
Eval Count 0
Decode Time 86 ms