RouteObject.php in Zircon Profile 8.0
File
vendor/symfony-cmf/routing/Tests/Enhancer/RouteObject.php
View source
<?php
namespace Symfony\Cmf\Component\Routing\Tests\Enhancer;
use Symfony\Component\Routing\Route;
use Symfony\Cmf\Component\Routing\RouteObjectInterface;
abstract class RouteObject extends Route implements RouteObjectInterface {
public function getRouteKey() {
return null;
}
}
Classes
Name |
Description |
RouteObject |
Empty abstract class to be able to mock an object that both extends Route
and implements RouteObjectInterface |