Passed
Push — main ( fe3fb4...0bc77b )
by BRUNO
01:56
created

ExampleModel::setSITUACAO()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
namespace App\Models;
3
4
use App\Libs\FuncoesLib;
0 ignored issues
show
Bug introduced by
The type App\Libs\FuncoesLib was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
5
use BMorais\Database\ModelAbstract;
6
7
class ExampleModel extends ModelAbstract {
8
9
    protected $CODMODULO;
10
    protected $TITULO;
11
    protected $DESCRICAO;
12
    protected $ICONE;
13
    protected $CONTROLLER;
14
    protected $SITUACAO;
15
    protected $ORDEM;
16
17
    /**
18
     * @return mixed
19
     */
20
    public function getCODMODULO()
21
    {
22
        return $this->CODMODULO;
23
    }
24
25
    /**
26
     * @param mixed $CODMODULO
27
     * @return ExampleModel
28
     */
29
    public function setCODMODULO($CODMODULO)
30
    {
31
        $this->CODMODULO = $CODMODULO;
32
        return $this;
33
    }
34
35
    /**
36
     * @return mixed
37
     */
38
    public function getTITULO()
39
    {
40
        return $this->TITULO;
41
    }
42
43
    /**
44
     * @param mixed $TITULO
45
     * @return ExampleModel
46
     */
47
    public function setTITULO($TITULO)
48
    {
49
        $this->TITULO = $TITULO;
50
        return $this;
51
    }
52
53
    /**
54
     * @return mixed
55
     */
56
    public function getDESCRICAO()
57
    {
58
        return $this->DESCRICAO;
59
    }
60
61
    /**
62
     * @param mixed $DESCRICAO
63
     * @return ExampleModel
64
     */
65
    public function setDESCRICAO($DESCRICAO)
66
    {
67
        $this->DESCRICAO = $DESCRICAO;
68
        return $this;
69
    }
70
71
    /**
72
     * @return mixed
73
     */
74
    public function getICONE()
75
    {
76
        return $this->ICONE;
77
    }
78
79
    /**
80
     * @param mixed $ICONE
81
     * @return ExampleModel
82
     */
83
    public function setICONE($ICONE)
84
    {
85
        $this->ICONE = $ICONE;
86
        return $this;
87
    }
88
89
    /**
90
     * @return mixed
91
     */
92
    public function getCONTROLLER()
93
    {
94
        return $this->CONTROLLER;
95
    }
96
97
    /**
98
     * @param mixed $CONTROLLER
99
     * @return ExampleModel
100
     */
101
    public function setCONTROLLER($CONTROLLER)
102
    {
103
        $this->CONTROLLER = $CONTROLLER;
104
        return $this;
105
    }
106
107
    /**
108
     * @return mixed
109
     */
110
    public function getSITUACAO()
111
    {
112
        return $this->SITUACAO;
113
    }
114
115
    /**
116
     * @param mixed $SITUACAO
117
     * @return ExampleModel
118
     */
119
    public function setSITUACAO($SITUACAO)
120
    {
121
        $this->SITUACAO = $SITUACAO;
122
        return $this;
123
    }
124
125
    /**
126
     * @return mixed
127
     */
128
    public function getORDEM()
129
    {
130
        return $this->ORDEM;
131
    }
132
133
    /**
134
     * @param mixed $ORDEM
135
     * @return ExampleModel
136
     */
137
    public function setORDEM($ORDEM)
138
    {
139
        $this->ORDEM = $ORDEM;
140
        return $this;
141
    }
142
143
}
144