public function RouterListenerTest::getLoggingParameterData in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Tests/EventListener/RouterListenerTest.php \Symfony\Component\HttpKernel\Tests\EventListener\RouterListenerTest::getLoggingParameterData()
File
- vendor/
symfony/ http-kernel/ Tests/ EventListener/ RouterListenerTest.php, line 154
Class
Namespace
Symfony\Component\HttpKernel\Tests\EventListenerCode
public function getLoggingParameterData() {
return array(
array(
array(
'_route' => 'foo',
),
'Matched route "foo".',
),
array(
array(),
'Matched route "n/a".',
),
);
}