| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 12 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); defined('BASEPATH') OR exit('No direct script access allowed'); |
||
| 19 | 112 | public function __construct() { |
|
| 20 | 112 | parent::__construct(); |
|
| 21 | |||
| 22 | //Modules |
||
| 23 | 112 | $this->title = new Tracker_Title_Model(); |
|
| 24 | 112 | $this->list = new Tracker_List_Model(); |
|
| 25 | 112 | $this->favourites = new Tracker_Favourites_Model(); |
|
| 26 | 112 | $this->tag = new Tracker_Tag_Model(); |
|
| 27 | 112 | $this->category = new Tracker_Category_Model(); |
|
| 28 | 112 | $this->portation = new Tracker_Portation_Model(); |
|
| 29 | 112 | $this->admin = new Tracker_Admin_Model(); |
|
| 30 | 112 | $this->stats = new Tracker_Stats_Model(); |
|
| 31 | 112 | $this->bug = new Tracker_Bug_Model(); |
|
| 32 | 112 | } |
|
| 33 | } |
||
| 34 |