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

ChainTransformer::transform()   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
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace Chrisyue\PhpM3u8\Transformer;
4
5
/**
6
 * @Annotation
7
 */
8
class ChainTransformer implements TransformerInterface
9
{
10
    private $transformers;
11
12
    public function __construct(array $transformers)
13
    {
14
        $this->transformers = $transformers;
15
    }
16
17
    public function transform($origin)
18
    {
19
        foreach ($this->transformers as $transformer) {
20
            $origin = $transformer->transform($origin);
21
        }
22
23
        return $origin;
24
    }
25
}
26