Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | public function __construct() |
||
9 | { |
||
10 | parent::__construct(); |
||
11 | $database = new \Suricate\Database(); |
||
12 | $database->configure([ |
||
13 | 'type' => 'sqlite', |
||
14 | 'file' => '/tmp/test.db' |
||
15 | ]); |
||
16 | $this->dbLink = $database; |
||
17 | |||
18 | $this->dbVariables = ['id', 'name', 'parent_id']; |
||
19 | |||
20 | $this->protectedVariables = ['prot_var', 'unloadable']; |
||
21 | } |
||
34 |