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 namespace yiiunit\framework\di\stubs; use yii\base\BaseObject; class Alpha extend..

Decoded Output download

<?php

namespace yiiunitramework\di\stubs;

use yiiase\BaseObject;

class Alpha extends BaseObject
{
    public $beta;
    public $omega;
    public $unknown = true;
    public $color = true;

    public function __construct(
        ?Beta $beta = null,
        ?QuxInterface $omega = null,
        ?Unknown $unknown = null,
        ?AbstractColor $color = null
    ) {
        $this->beta = $beta;
        $this->omega = $omega;
        $this->unknown = $unknown;
        $this->color = $color;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace yiiunit\framework\di\stubs;

use yii\base\BaseObject;

class Alpha extends BaseObject
{
    public $beta;
    public $omega;
    public $unknown = true;
    public $color = true;

    public function __construct(
        ?Beta $beta = null,
        ?QuxInterface $omega = null,
        ?Unknown $unknown = null,
        ?AbstractColor $color = null
    ) {
        $this->beta = $beta;
        $this->omega = $omega;
        $this->unknown = $unknown;
        $this->color = $color;
    }
}

Function Calls

None

Variables

None

Stats

MD5 e7ae624a451c03dacb5f0b69305dbf51
Eval Count 0
Decode Time 89 ms