Total Complexity | 2 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
6 | class UserLinkedSources extends \Baka\Auth\Models\UserLinkedSources |
||
7 | { |
||
8 | /** |
||
9 | * |
||
10 | * @var integer |
||
11 | */ |
||
12 | public $source_id; |
||
13 | |||
14 | /** |
||
15 | * |
||
16 | * @var integer |
||
17 | */ |
||
18 | public $users_id; |
||
19 | |||
20 | /** |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | public $source_users_id; |
||
25 | |||
26 | /** |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | public $source_users_id_text; |
||
31 | |||
32 | /** |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | public $source_username; |
||
37 | |||
38 | /** |
||
39 | * |
||
40 | * @var integer |
||
41 | */ |
||
42 | public $is_deleted; |
||
43 | |||
44 | /** |
||
45 | * Initialize method for model. |
||
46 | */ |
||
47 | 68 | public function initialize() |
|
52 | 68 | } |
|
53 | |||
54 | /** |
||
55 | * Returns table name mapped in the model. |
||
56 | * |
||
57 | * @return string |
||
58 | */ |
||
59 | 3 | public function getSource(): string |
|
64 |