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

ChainTransformer::doTransform()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
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