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

UriParser   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A parse() 0 4 1
A supports() 0 4 1
A isRepeatable() 0 4 1
1
<?php
2
3
namespace Chrisyue\PhpM3u8\Parser;
4
5
use Chrisyue\PhpM3u8\Line\LineInterface;
6
use Chrisyue\PhpM3u8\Line\LinesInterface;
7
8
class UriParser implements ChildParserInterface
9
{
10
    public function parse(LinesInterface $lines)
11
    {
12
        return $lines->read()->getValue();
13
    }
14
15
    public function supports(LineInterface $line)
16
    {
17
        return $line->isCategory(LineInterface::CATEGORY_URI);
18
    }
19
20
    public function isRepeatable()
21
    {
22
        return false;
23
    }
24
}
25