Conditions | 4 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | 6 | public function formatTime($time) |
|
43 | { |
||
44 | 6 | if ($this->timeFormat === null || $this->timeFormat === false) { |
|
45 | 4 | return $time; |
|
46 | } |
||
47 | |||
48 | 2 | $dateTime = new \DateTime($time); |
|
49 | |||
50 | 2 | if ($this->timeFormat === true) { |
|
51 | 1 | return $dateTime; |
|
52 | } |
||
53 | |||
54 | 1 | return $dateTime->format($this->timeFormat); |
|
55 | } |
||
56 | } |
||
57 |