Passed
Push — master ( f44faa...c2d2bb )
by Alexander
05:29
created

DummyContainer   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 15
rs 10
wmc 2
1
<?php
2
3
namespace Yiisoft\Router\FastRoute\Tests;
4
5
use Psr\Container\ContainerInterface;
6
7
class DummyContainer implements ContainerInterface
8
{
9
    /**
10
     * @inheritDoc
11
     */
12
    public function get($id)
13
    {
14
        // passed for tests
15
    }
16
17
    /**
18
     * @inheritDoc
19
     */
20
    public function has($id)
21
    {
22
        // passed for tests
23
    }
24
}
25