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

ChainTransformer   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 1
dl 0
loc 23
c 0
b 0
f 0
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A supports() 0 4 1
A doTransform() 0 8 2
1
<?php
2
3
namespace Chrisyue\PhpM3u8\Transformer;
4
5
/**
6
 * @Annotation
7
 */
8
class ChainTransformer extends AbstractTransformer
9
{
10
    private $transformers;
11
12
    public function __construct(array $transformers)
13
    {
14
        $this->transformers = $transformers;
15
    }
16
17
    public function supports($origin)
18
    {
19
        return $this->transformers[0]->supports($origin);
20
    }
21
22
    protected function doTransform($origin)
23
    {
24
        foreach ($this->transformers as $transformer) {
25
            $origin = $transformer->transform($origin);
26
        }
27
28
        return $origin;
29
    }
30
}
31