| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct(Context $context, Stdio $stdio, CI_Controller $ci) |
||
| 27 | { |
||
| 28 | $this->context = $context; |
||
| 29 | $this->stdio = $stdio; |
||
| 30 | $this->ci = $ci; |
||
| 31 | |||
| 32 | $this->ci->load->database(); |
||
| 33 | $this->db = $this->ci->db; |
||
| 34 | $this->ci->load->dbforge(); |
||
| 35 | $this->dbforge = $this->ci->dbforge; |
||
| 36 | } |
||
| 37 | |||
| 55 |