Test Failed
Pull Request — master (#135)
by Rafael
06:12
created

CustomFieldsModules   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 75
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 19
c 1
b 0
f 0
dl 0
loc 75
ccs 15
cts 15
cp 1
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getSource() 0 3 1
A initialize() 0 16 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Canvas\Models;
5
6
class CustomFieldsModules extends AbstractModel
7
{
8
    /**
9
     *
10
     * @var integer
11
     */
12
    public $id;
13
14
    /**
15
     *
16
     * @var integer
17
     */
18
    public $apps_id;
19
20
    /**
21
     *
22
     * @var string
23
     */
24
    public $name;
25
26
    /**
27
     *
28
     * @var integer
29
     */
30
    public $is_deleted;
31
32
    /**
33
     *
34
     * @var string
35
     */
36
    public $created_at;
37
38
    /**
39
     *
40
     * @var string
41
     */
42
    public $updated_at;
43
44
    /**
45
     * Initialize method for model.
46
     */
47 6
    public function initialize()
48
    {
49 6
        $this->setSource('custom_fields_modules');
50
51 6
        $this->belongsTo(
52 6
            'companies_id',
53 6
            'Canvas\Models\Companies',
54 6
            'id',
55 6
            ['alias' => 'company']
56
        );
57
58 6
        $this->hasMany(
59 6
            'id',
60 6
            'Canvas\CustomFields\CustomFields',
61 6
            'custom_fields_modules_id',
62 6
            ['alias' => 'fields']
63
        );
64
65
        // $this->belongsTo(
66
        //     'apps_id',
67
        //     'Canvas\Models\Apps',
68
        //     'id',
69
        //     ['alias' => 'app']
70
        // );
71 6
    }
72
73
    /**
74
     * Returns table name mapped in the model.
75
     *
76
     * @return string
77
     */
78 6
    public function getSource(): string
79
    {
80 6
        return 'custom_fields_modules';
81
    }
82
}
83