Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
11 | public function handle() { |
||
12 | |||
13 | # Determine handler class |
||
14 | |||
15 | $checked = (Install::status() && Validate::boolean(Request::get('checked'))); |
||
16 | |||
17 | $class = ('Handlers\Admin\Install\\' . (!$checked ? 'Check' : 'Database')); |
||
18 | |||
19 | # ------------------------ |
||
20 | |||
21 | new $class(); |
||
22 | } |
||
23 | } |
||
25 |