1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-21 18:11:10 +00:00
wallabag/inc/3rdparty/Twig/Gettext/Routing/Generator/UrlGenerator.php

40 lines
864 B
PHP
Raw Normal View History

2013-08-02 22:40:51 +02:00
<?php
/**
* This file is part of the Twig Gettext utility.
*
* (c) Саша Стаменковић <umpirsky@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Gettext\Routing\Generator;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Routing\RequestContext;
/**
* Dummy url generator.
*
* @author Саша Стаменковић <umpirsky@gmail.com>
*/
class UrlGenerator implements UrlGeneratorInterface
{
protected $context;
public function generate($name, $parameters = array(), $absolute = false)
{
}
public function getContext()
{
return $this->context;
}
public function setContext(RequestContext $context)
{
$this->context = $context;
}
}