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