Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | public function __construct(InterpolatorFactory $interpolator, array $options) |
||
33 | { |
||
34 | $this->replacePlaceholders('zemit', [ |
||
35 | 'zemit' => '<a href="https://www.zemit.com/">Zemit</a>' |
||
36 | ]); |
||
37 | |||
38 | parent::__construct($interpolator, array_merge_recursive([ |
||
39 | 'locale' => 'fr_CA.UTF-8', |
||
40 | 'defaultDomain' => 'zemit', |
||
41 | 'category' => LC_MESSAGES, |
||
42 | 'content' => [ |
||
43 | 'powered-by' => 'Propulsé par %zemit%.', |
||
44 | 'copyright' => '%zemit% © 2017 Zemit.', |
||
45 | ], |
||
46 | ], $options)); |
||
47 | } |
||
49 |