Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct(ModuleContainer $moduleContainer, $config = null) |
||
14 | { |
||
15 | parent::__construct($moduleContainer, $config); |
||
16 | |||
17 | $this->requiredFields = [ |
||
18 | // Client |
||
19 | 'client.login', 'client.password', |
||
20 | 'seller.login', 'seller.password', |
||
21 | 'admin.login', 'admin.password', |
||
22 | ]; |
||
23 | } |
||
24 | |||
41 |