Passed
Push — main ( ecdc1f...dbd268 )
by Thierry
01:34
created

Util::name()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Lagdo\DbAdmin\Driver\Tests;
4
5
use Lagdo\DbAdmin\Driver\InputInterface;
6
use Lagdo\DbAdmin\Driver\TranslatorInterface;
7
use Lagdo\DbAdmin\Driver\UtilInterface;
8
use Lagdo\DbAdmin\Driver\UtilTrait;
9
10
class Util implements UtilInterface
11
{
12
    use UtilTrait;
13
14
    /**
15
     * The constructor
16
     *
17
     * @param TranslatorInterface $trans
18
     * @param InputInterface $input
19
     */
20
    public function __construct(TranslatorInterface $trans, InputInterface $input)
21
    {
22
        $this->trans = $trans;
23
        $this->input = $input;
24
    }
25
26
    /**
27
     * @inheritDoc
28
     */
29
    public function name(): string
30
    {
31
        return '';
32
    }
33
}
34