Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
53 | 1 | public function dump() |
|
54 | { |
||
55 | 1 | if (null === $this->duration) { |
|
56 | 1 | return; |
|
57 | } |
||
58 | |||
59 | 1 | if (3 > $this->m3u8Version) { |
|
60 | return sprintf('%s:%d,%s', self::TAG_IDENTIFIER, round($this->duration), $this->title); |
||
61 | } |
||
62 | |||
63 | 1 | return sprintf('%s:%.3f,%s', self::TAG_IDENTIFIER, round($this->duration, 3), $this->title); |
|
64 | } |
||
65 | |||
71 |