Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct( |
||
21 | ConfigResolverInterface $configResolver, |
||
22 | bool $defaultUseAlwaysAvailable = true, |
||
23 | bool $defaultShowAllTranslations = false |
||
24 | ) { |
||
25 | $this->configResolver = $configResolver; |
||
26 | parent::__construct($defaultUseAlwaysAvailable, $defaultShowAllTranslations); |
||
27 | } |
||
28 | |||
39 |