Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
52 | 34 | function db_prime () { |
|
53 | 34 | if (is_object($this->_db_prime)) { |
|
54 | 34 | return $this->_db_prime; |
|
55 | } |
||
56 | /** |
||
57 | * Save reference for faster access |
||
58 | */ |
||
59 | /** @noinspection ExceptionsAnnotatingAndHandlingInspection */ |
||
60 | 34 | $this->_db_prime = DB::instance()->db_prime($this->cdb()); |
|
61 | 34 | return $this->_db_prime; |
|
62 | } |
||
63 | /** |
||
70 |