summaryrefslogtreecommitdiffstatshomepage
path: root/core/lib/Drupal/Core/Routing/NullRouteMatch.php
blob: 1d99b2214e344d93de017813810d21650cec857f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php

namespace Drupal\Core\Routing;

use Symfony\Component\HttpFoundation\InputBag;
use Symfony\Component\HttpFoundation\ParameterBag;

/**
 * Stub implementation of RouteMatchInterface for when there's no matched route.
 */
class NullRouteMatch implements RouteMatchInterface {

  /**
   * {@inheritdoc}
   */
  public function getRouteName() {
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getRouteObject() {
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getParameter($parameter_name) {
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getParameters() {
    return new ParameterBag();
  }

  /**
   * {@inheritdoc}
   */
  public function getRawParameter($parameter_name) {
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function getRawParameters() {
    return new InputBag();
  }

}