Total Complexity | 14 |
Total Lines | 134 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
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() |
||
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) |
||
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) |
||
141 | } |
||
142 | |||
143 | } |
||
144 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths