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

Translator::formatTime()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 2
rs 10
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
}