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 reliforp/reli-prof package. * * (c) sji <sji@sj-i..
Decoded Output download
<?php
/**
* This file is part of the reliforp/reli-prof package.
*
* (c) sji <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DI {
use Invoker\InvokerInterface;
use Psr\Container\ContainerInterface;
class Container implements ContainerInterface, FactoryInterface, InvokerInterface
{
/**
* @template T
* @template TId of class-string<T>
* @param TId|string $id
* @return ($id is class-string ? T : mixed)
*/
public function get(string $id)
{
// TODO: Implement get() method.
}
public function has(string $id): bool
{
}
/**
* @template T
* @template TId of class-string<T>
* @param TId|string $name
* @return ($name is class-string ? T : mixed)
*/
public function make(string $name, array $parameters = []): mixed
{
}
public function call($callable, array $parameters = [])
{
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This file is part of the reliforp/reli-prof package.
*
* (c) sji <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DI {
use Invoker\InvokerInterface;
use Psr\Container\ContainerInterface;
class Container implements ContainerInterface, FactoryInterface, InvokerInterface
{
/**
* @template T
* @template TId of class-string<T>
* @param TId|string $id
* @return ($id is class-string ? T : mixed)
*/
public function get(string $id)
{
// TODO: Implement get() method.
}
public function has(string $id): bool
{
}
/**
* @template T
* @template TId of class-string<T>
* @param TId|string $name
* @return ($name is class-string ? T : mixed)
*/
public function make(string $name, array $parameters = []): mixed
{
}
public function call($callable, array $parameters = [])
{
}
}
}
Function Calls
None |
Stats
MD5 | 686e7e6a95e72473b617696f0ecaa7a0 |
Eval Count | 0 |
Decode Time | 88 ms |