PaymentFrequenciesController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 30
ccs 0
cts 7
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A onConstruct() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Canvas\Api\Controllers;
6
7
use Canvas\Models\PaymentFrequencies;
8
9
/**
10
 * Class LanguagesController.
11
 *
12
 * @package Canvas\Api\Controllers
13
 *
14
 */
15
class PaymentFrequenciesController extends BaseController
16
{
17
    /*
18
     * fields we accept to create
19
     *
20
     * @var array
21
     */
22
    protected $createFields = [
23
        'name'
24
    ];
25
26
    /*
27
     * fields we accept to create
28
     *
29
     * @var array
30
     */
31
    protected $updateFields = [
32
        'name'
33
    ];
34
35
    /**
36
     * set objects.
37
     *
38
     * @return void
39
     */
40
    public function onConstruct()
41
    {
42
        $this->model = new PaymentFrequencies();
0 ignored issues
show
Bug Best Practice introduced by
The property model does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
43
        $this->additionalSearchFields = [
0 ignored issues
show
Bug Best Practice introduced by
The property additionalSearchFields does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
44
            ['is_deleted', ':', '0'],
45
        ];
46
    }
47
}
48