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\Routing; interface ParamsResolverInterface { /** * Call..
Decoded Output download
<?php
namespace Pagekit\Routing;
interface ParamsResolverInterface
{
/**
* Callback to modify parameters after route matching.
*
* @param array $parameters
* @return array
*/
public function match(array $parameters = []);
/**
* Callback to modify parameters during URL generation.
*
* @param array $parameters
* @return array
*/
public function generate(array $parameters = []);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Pagekit\Routing;
interface ParamsResolverInterface
{
/**
* Callback to modify parameters after route matching.
*
* @param array $parameters
* @return array
*/
public function match(array $parameters = []);
/**
* Callback to modify parameters during URL generation.
*
* @param array $parameters
* @return array
*/
public function generate(array $parameters = []);
}
Function Calls
None |
Stats
MD5 | 749a342dc1a879e7bea47db618e5eb0e |
Eval Count | 0 |
Decode Time | 86 ms |