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 Drupal\Core\Routing; use Symfony\Component\HttpFoundation\InputBag; use ..
Decoded Output download
<?php
namespace Drupal\Core\Routing;
use Symfony\Component\HttpFoundation\InputBag;
use Symfony\Component\HttpFoundation\ParameterBag;
/**
* Stub implementation of RouteMatchInterface for when there's no matched route.
*/
class NullRouteMatch implements RouteMatchInterface {
/**
* {@inheritdoc}
*/
public function getRouteName() {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getRouteObject() {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getParameter($parameter_name) {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getParameters() {
return new ParameterBag();
}
/**
* {@inheritdoc}
*/
public function getRawParameter($parameter_name) {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getRawParameters() {
return new InputBag();
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Routing;
use Symfony\Component\HttpFoundation\InputBag;
use Symfony\Component\HttpFoundation\ParameterBag;
/**
* Stub implementation of RouteMatchInterface for when there's no matched route.
*/
class NullRouteMatch implements RouteMatchInterface {
/**
* {@inheritdoc}
*/
public function getRouteName() {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getRouteObject() {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getParameter($parameter_name) {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getParameters() {
return new ParameterBag();
}
/**
* {@inheritdoc}
*/
public function getRawParameter($parameter_name) {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getRawParameters() {
return new InputBag();
}
}
Function Calls
None |
Stats
MD5 | 84990bc982fb6065a40885686126c0b4 |
Eval Count | 0 |
Decode Time | 86 ms |