Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
42 | public function __construct(string $label, array $params = []) |
||
43 | { |
||
44 | $this->label = $label; |
||
45 | $this->dictionary = ArrayHelper::remove($params, 'dictionary'); |
||
46 | $this->pathToPage = ArrayHelper::remove($params, 'path'); |
||
47 | $this->params = ArrayHelper::remove($params, 'params', []); |
||
48 | } |
||
49 | |||
79 |