Completed
Pull Request — develop (#27)
by Chris
01:41
created

Inf   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 17
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A transform() 0 9 1
A reverse() 0 4 1
1
<?php
2
3
namespace Chrisyue\PhpM3u8\M3u8\Transformer;
4
5
use Chrisyue\PhpM3u8\Document\Rfc8216\Tag;
6
7
/**
8
 * @Annotation
9
 */
10
class Inf implements TransformerInterface
11
{
12
    public function transform($origin)
13
    {
14
        $inf = new Tag\Inf();
15
        list($duration, $inf->title) = explode(',', $origin, 2);
16
17
        $inf->duration = +$duration;
18
19
        return $inf;
20
    }
21
22
    public function reverse($inf)
23
    {
24
        return sprintf('%s,%s', $inf->duration, $inf->title);
25
    }
26
}
27