Completed
Pull Request — develop (#27)
by Chris
02:25
created

InfTransformer::transform()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 9.6666
c 0
b 0
f 0
cc 1
eloc 5
nc 1
nop 1
1
<?php
2
3
namespace Chrisyue\PhpM3u8\Transformer;
4
5
use Chrisyue\PhpM3u8\Document\Rfc8216\Tag\Inf;
6
7
/**
8
 * @Annotation
9
 */
10
class InfTransformer implements TransformerInterface
11
{
12
    public function transform($origin)
13
    {
14
        $inf = new Inf();
15
        list($duration, $inf->title) = explode(',', $origin, 2);
16
17
        $inf->duration = +$duration;
18
19
        return $inf;
20
    }
21
}
22