Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\lock\db $lock, $table_name) |
||
26 | { |
||
27 | parent::__construct( |
||
28 | $db, |
||
29 | $lock, |
||
30 | $table_name, |
||
31 | '', |
||
32 | '', |
||
33 | [], |
||
34 | [ |
||
35 | 'item_id' => 'prefix_id', |
||
36 | 'parent_id' => 'prefix_parent_id', |
||
37 | 'left_id' => 'prefix_left_id', |
||
38 | 'right_id' => 'prefix_right_id', |
||
39 | 'item_parents' => 'prefix_parents', |
||
40 | ] |
||
41 | ); |
||
42 | } |
||
43 | |||
57 |