Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class OutputStrategy |
||
9 | { |
||
10 | /** |
||
11 | * @var array |
||
12 | */ |
||
13 | private $outputTriggers; |
||
14 | |||
15 | /** |
||
16 | * @param array $outputTriggers |
||
17 | */ |
||
18 | public function __construct( |
||
19 | $outputTriggers = array() |
||
20 | ) { |
||
21 | $this->outputTriggers = $outputTriggers; |
||
22 | } |
||
23 | |||
24 | public function shouldAllowForPatches(array $patches) |
||
33 | ); |
||
34 | } |
||
38 |