Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function __construct(array $parameters) |
||
33 | { |
||
34 | parent::__construct($parameters); |
||
35 | |||
36 | if (!isset($this->filteredParameters['REFABONNE'])) { |
||
37 | throw new \RuntimeException('Undefined index REFABONNE', 1); |
||
38 | } |
||
39 | |||
40 | $this->subscriberRef = $this->filteredParameters['REFABONNE']; |
||
41 | $this->bearer = $this->filteredParameters['PORTEUR']; |
||
42 | } |
||
43 | |||
60 |