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

Translator   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 24
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A lang() 0 2 1
A formatTime() 0 2 1
A formatNumber() 0 2 1
1
<?php
2
3
namespace Lagdo\DbAdmin\Driver\Tests;
4
5
use Lagdo\DbAdmin\Driver\TranslatorInterface;
6
7
class Translator implements TranslatorInterface
8
{
9
10
    /**
11
     * @inheritDoc
12
     */
13
    public function lang(string $idf, $number = null)
14
    {
15
        // TODO: Implement lang() method.
16
    }
17
18
    /**
19
     * @inheritDoc
20
     */
21
    public function formatNumber(int $number)
22
    {
23
        // TODO: Implement formatNumber() method.
24
    }
25
26
    /**
27
     * @inheritDoc
28
     */
29
    public function formatTime(float $time)
30
    {
31
        // TODO: Implement formatTime() method.
32
    }
33
}