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

ByterangeTransformer   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A transform() 0 12 2
1
<?php
2
3
namespace Chrisyue\PhpM3u8\Transformer;
4
5
use Chrisyue\PhpM3u8\Document\Rfc8216\Tag\Byterange;
6
7
/**
8
 * @Annotation
9
 */
10
class ByterangeTransformer implements TransformerInterface
0 ignored issues
show
Bug introduced by
There is one abstract method supports in this class; you could implement it, or declare this class as abstract.
Loading history...
11
{
12
    public function transform($origin)
13
    {
14
        $byterange = new Byterange();
15
        list($length, $offset) = array_pad(explode('@', $origin, 2), 2, null);
16
17
        $byterange->length = (int) $length;
18
        if (null !== $offset) {
19
            $byterange->offset = (int) $offset;
20
        }
21
22
        return $byterange;
23
    }
24
}
25