| Total Complexity | 2 | 
| Total Lines | 68 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 6 | class UsersAssociatedApps extends AbstractModel  | 
            ||
| 7 | { | 
            ||
| 8 | /**  | 
            ||
| 9 | *  | 
            ||
| 10 | * @var integer  | 
            ||
| 11 | */  | 
            ||
| 12 | public $users_id;  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | *  | 
            ||
| 16 | * @var integer  | 
            ||
| 17 | */  | 
            ||
| 18 | public $apps_id;  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | *  | 
            ||
| 22 | * @var integer  | 
            ||
| 23 | */  | 
            ||
| 24 | public $companies_id;  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | *  | 
            ||
| 28 | * @var string  | 
            ||
| 29 | */  | 
            ||
| 30 | public $identify_id;  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | *  | 
            ||
| 34 | * @var integer  | 
            ||
| 35 | */  | 
            ||
| 36 | public $user_active;  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | *  | 
            ||
| 40 | * @var string  | 
            ||
| 41 | */  | 
            ||
| 42 | public $user_role;  | 
            ||
| 43 | |||
| 44 | /**  | 
            ||
| 45 | * Initialize method for model.  | 
            ||
| 46 | */  | 
            ||
| 47 | 4 | public function initialize()  | 
            |
| 64 | 4 | }  | 
            |
| 65 | |||
| 66 | /**  | 
            ||
| 67 | * Returns table name mapped in the model.  | 
            ||
| 68 | *  | 
            ||
| 69 | * @return string  | 
            ||
| 70 | */  | 
            ||
| 71 | 4 | public function getSource(): string  | 
            |
| 76 |