Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function __construct(array $config = []) |
||
31 | { |
||
32 | $defaultConfig = [ |
||
33 | 'template' => [], |
||
34 | 'string' => [], |
||
35 | 'allowPhpScripts' => true, |
||
36 | 'allowPhpFunctions' => true, |
||
37 | 'allowPhpConstants' => true, |
||
38 | 'allowPhpGlobals' => true, |
||
39 | ]; |
||
40 | |||
41 | $config = array_merge($defaultConfig, $config); |
||
42 | |||
43 | parent::__construct($config); |
||
44 | } |
||
45 | } |