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 /** * This file is part of the Zephir. * * (c) Phalcon Team <[email protected]..

Decoded Output download

<?php

/**
 * This file is part of the Zephir.
 *
 * (c) Phalcon Team <[email protected]>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Zephir\Expression\Builder\Statements;

use function is_array;

/**
 * Allows to manually build a static function call AST node
 */
class CallStaticStatement extends AbstractStatement
{
    private $arguments;
    private $class;
    private $dynamicClass  = false;
    private $dynamicMethod = false;
    private $method;

    /**
     * @param null       $class
     * @param null       $method
     * @param array|null $parameters
     */
    public function __construct($class = null, $method = null, array $parameters = null)
    {
        if (null !== $class) {
            $this->setClass($class);
        }

        if (null !== $method) {
            $this->setMethod($method);
        }

        if (null !== $parameters) {
            $this->setArguments($parameters);
        }
    }

    /**
     * @return mixed
     */
    public function getArguments()
    {
        return $this->arguments;
    }

    /**
     * @return mixed
     */
    public function getClass()
    {
        return $this->class;
    }

    /**
     * @return mixed
     */
    public function getMethod()
    {
        return $this->method;
    }

    /**
     * @return bool
     */
    public function isDynamicClass()
    {
        return $this->dynamicClass;
    }

    /**
     * @return bool
     */
    public function isDynamicMethod()
    {
        return $this->dynamicMethod;
    }

    /**
     * @param mixed $arguments
     *
     * @return CallStaticStatement
     */
    public function setArguments($arguments)
    {
        $this->arguments = $arguments;

        return $this;
    }

    /**
     * @param mixed $class
     *
     * @return CallStaticStatement
     */
    public function setClass($class)
    {
        $this->class = $class;

        return $this;
    }

    /**
     * @param bool $dynamicClass
     *
     * @return CallStaticStatement
     */
    public function setDynamicClass($dynamicClass)
    {
        $this->dynamicClass = $dynamicClass;

        return $this;
    }

    /**
     * @param bool $dynamicMethod
     *
     * @return CallStaticStatement
     */
    public function setDynamicMethod($dynamicMethod)
    {
        $this->dynamicMethod = $dynamicMethod;

        return $this;
    }

    /**
     * @param mixed $method
     *
     * @return CallStaticStatement
     */
    public function setMethod($method)
    {
        $this->method = $method;

        return $this;
    }

    /**
     * @return array
     */
    protected function preBuild()
    {
        if ($arguments = $this->getArguments()) {
            foreach ($arguments as &$argument) {
                if (!is_array($argument) || !isset($argument['parameter'])) {
                    $argument = ['parameter' => $argument];
                }
            }
        }

        return [
            'type'          => 'scall',
            'class'         => $this->getClass(),
            'name'          => $this->getMethod(),
            'parameters'    => $arguments,
            'dynamic-class' => $this->isDynamicClass(),
            'dynamic'       => $this->isDynamicMethod(),
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * This file is part of the Zephir.
 *
 * (c) Phalcon Team <[email protected]>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Zephir\Expression\Builder\Statements;

use function is_array;

/**
 * Allows to manually build a static function call AST node
 */
class CallStaticStatement extends AbstractStatement
{
    private $arguments;
    private $class;
    private $dynamicClass  = false;
    private $dynamicMethod = false;
    private $method;

    /**
     * @param null       $class
     * @param null       $method
     * @param array|null $parameters
     */
    public function __construct($class = null, $method = null, array $parameters = null)
    {
        if (null !== $class) {
            $this->setClass($class);
        }

        if (null !== $method) {
            $this->setMethod($method);
        }

        if (null !== $parameters) {
            $this->setArguments($parameters);
        }
    }

    /**
     * @return mixed
     */
    public function getArguments()
    {
        return $this->arguments;
    }

    /**
     * @return mixed
     */
    public function getClass()
    {
        return $this->class;
    }

    /**
     * @return mixed
     */
    public function getMethod()
    {
        return $this->method;
    }

    /**
     * @return bool
     */
    public function isDynamicClass()
    {
        return $this->dynamicClass;
    }

    /**
     * @return bool
     */
    public function isDynamicMethod()
    {
        return $this->dynamicMethod;
    }

    /**
     * @param mixed $arguments
     *
     * @return CallStaticStatement
     */
    public function setArguments($arguments)
    {
        $this->arguments = $arguments;

        return $this;
    }

    /**
     * @param mixed $class
     *
     * @return CallStaticStatement
     */
    public function setClass($class)
    {
        $this->class = $class;

        return $this;
    }

    /**
     * @param bool $dynamicClass
     *
     * @return CallStaticStatement
     */
    public function setDynamicClass($dynamicClass)
    {
        $this->dynamicClass = $dynamicClass;

        return $this;
    }

    /**
     * @param bool $dynamicMethod
     *
     * @return CallStaticStatement
     */
    public function setDynamicMethod($dynamicMethod)
    {
        $this->dynamicMethod = $dynamicMethod;

        return $this;
    }

    /**
     * @param mixed $method
     *
     * @return CallStaticStatement
     */
    public function setMethod($method)
    {
        $this->method = $method;

        return $this;
    }

    /**
     * @return array
     */
    protected function preBuild()
    {
        if ($arguments = $this->getArguments()) {
            foreach ($arguments as &$argument) {
                if (!is_array($argument) || !isset($argument['parameter'])) {
                    $argument = ['parameter' => $argument];
                }
            }
        }

        return [
            'type'          => 'scall',
            'class'         => $this->getClass(),
            'name'          => $this->getMethod(),
            'parameters'    => $arguments,
            'dynamic-class' => $this->isDynamicClass(),
            'dynamic'       => $this->isDynamicMethod(),
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 5e4776720eaf0e58381d7327454002e0
Eval Count 0
Decode Time 95 ms