Networking\InitCmsBundle\Component\Routing\Route::getOption PHP Метод

getOption() публичный Метод

Handling the missing default 'compiler_class'
См. также: setOptions
public getOption ( $name )
    public function getOption($name)
    {
        $option = parent::getOption($name);
        if (null === $option && 'compiler_class' === $name) {
            return 'Symfony\\Component\\Routing\\RouteCompiler';
        }
        return $option;
    }