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