Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __construct() |
||
19 | { |
||
20 | $this->users['john'] = new User('john', 'doe', '0123456789', ['ROLE_SUPERVISOR']); |
||
21 | $this->users['ben'] = new User('ben', 'neb', '9876543210', ['ROLE_MANAGER']); |
||
22 | $this->users['ian'] = new User('ian', 'nia', '0000000000', ['ROLE_SUPERADMIN']); |
||
23 | } |
||
24 | |||
35 |