aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/Twig/Gettext/Routing/Generator/UrlGenerator.php
blob: 9e3431bdf561b54bb082b7d30208d28f7fa783b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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;
    }
}