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 Pagekit\Module\Loader; class CallableLoader implements LoaderInterface {..

Decoded Output download

<?php

namespace Pagekit\Module\Loader;

class CallableLoader implements LoaderInterface
{
    /**
     * @var callable
     */
    protected $callable;

    /**
     * Constructor.
     *
     * @param callable $callable
     */
    public function __construct(callable $callable)
    {
        $this->callable = $callable;
    }

    /**
     * {@inheritdoc}
     */
    public function load($module)
    {
        return call_user_func($this->callable, $module);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Module\Loader;

class CallableLoader implements LoaderInterface
{
    /**
     * @var callable
     */
    protected $callable;

    /**
     * Constructor.
     *
     * @param callable $callable
     */
    public function __construct(callable $callable)
    {
        $this->callable = $callable;
    }

    /**
     * {@inheritdoc}
     */
    public function load($module)
    {
        return call_user_func($this->callable, $module);
    }
}

Function Calls

None

Variables

None

Stats

MD5 355686683fb014fa153dd489b1a601af
Eval Count 0
Decode Time 91 ms