| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | \phpbb\auth\auth $auth, |
||
| 34 | \phpbb\config\config $config, |
||
| 35 | $phpbb_root_path, |
||
| 36 | $php_ext |
||
| 37 | ) |
||
| 38 | { |
||
| 39 | $this->auth = $auth; |
||
| 40 | $this->config = $config; |
||
| 41 | $this->phpbb_root_path = $phpbb_root_path; |
||
| 42 | $this->php_ext = $php_ext; |
||
| 43 | |||
| 44 | if (!class_exists('auth_admin')) |
||
| 45 | { |
||
| 46 | include($this->phpbb_root_path . 'includes/acp/auth.' . $this->php_ext); |
||
| 47 | } |
||
| 48 | $this->auth_admin = new \auth_admin(); |
||
| 49 | } |
||
| 77 |