Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
1 | <?php |
||
10 | class Tools extends Base |
||
11 | { |
||
12 | const TK_OBTEM = 'O'; |
||
13 | const TK_INICIA = 'I'; |
||
14 | const TK_FINALIZA = 'F'; |
||
15 | const TK_CANCELA = 'C'; |
||
16 | const TK_STATUS = 'S'; |
||
17 | |||
18 | /** |
||
19 | * Endereços principais dos webservices |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $url = [ |
||
23 | '1' => 'https://esfingews.tce.sc.gov.br', |
||
24 | '2' => 'https://desenv2.tce.sc.gov.br:7443', |
||
25 | ]; |
||
26 | /** |
||
27 | * Competência bimestral no formato: AAAABB, onde: |
||
28 | * AAAA = ano a ser enviado os dados |
||
29 | * BB = bimestre de 01 até 06 |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $competencia = ''; |
||
33 | /** |
||
34 | * Token de segurança e queue |
||
35 | * hash com 36 caracteres aleatórios |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $tokenid = ''; |
||
39 | /** |
||
40 | * Flag iniciar tranferencia |
||
41 | * @var bool |
||
42 | */ |
||
43 | protected $flagIniciar = false; |
||
44 | /** |
||
45 | * Datahora da ultima solicitação da situação do token |
||
46 | * @var timestramp |
||
47 | */ |
||
48 | protected $tsLastSitToken; |
||
49 | |||
50 | /** |
||
51 | * Construtor |
||
52 | * @param string $configJson |
||
53 | */ |
||
54 | 6 | public function __construct($configJson = '') |
|
58 | |||
59 | /** |
||
60 | * Define o período de competência das informações |
||
61 | * formado AAAABB sendo BB o bimestre de 01 até 06 |
||
62 | * @param string $valor |
||
|
|||
63 | */ |
||
64 | 9 | public function setCompetencia($aaaabb) |
|
75 | |||
76 | /** |
||
77 | * Retorna o período de competência informado |
||
78 | * @return string |
||
79 | */ |
||
80 | 3 | public function getCompetencia() |
|
84 | |||
85 | /** |
||
86 | * Retorna no token ativo |
||
87 | * @return string |
||
88 | */ |
||
89 | 3 | public function getToken() |
|
90 | { |
||
91 | 3 | return $this->tokenid; |
|
92 | } |
||
93 | |||
94 | /** |
||
95 | * Retorna o status de inicio de transferencia |
||
96 | * @return bool |
||
97 | */ |
||
98 | public function getTransferencia() |
||
102 | |||
103 | /** |
||
104 | * Operações com token |
||
105 | * O método pode ser: |
||
106 | * C - cancela a transferencia |
||
107 | * F - finaliza a transferencia |
||
108 | * I - inica a transferencia |
||
109 | * O - Obtem o token para realizar as operações |
||
110 | * S - Verifica a situação do token |
||
111 | * @param string $method |
||
112 | */ |
||
113 | public function token($method = self::TK_OBTEM) |
||
240 | |||
241 | /** |
||
242 | * Inicia o processo de tranferência de dados |
||
243 | * @param array $data |
||
244 | * @throws InvalidArgumentException |
||
245 | * @throws RuntimeException |
||
246 | */ |
||
247 | protected function obterTokenIniciarTransferencia($data = array(), $method = 'L') |
||
248 | { |
||
249 | if (empty($data)) { |
||
250 | throw new InvalidArgumentException('Não foram passados dados para o método'); |
||
251 | } |
||
252 | $this->token(self::TK_OBTEM); |
||
253 | if ($method == 'E') { |
||
254 | $this->token(self::TK_INICIA); |
||
255 | } |
||
256 | if ($this->tokenid == '') { |
||
257 | throw new RuntimeException("Falha token:$this->tokenid , Iniciar: $this->flagIniciar"); |
||
258 | } |
||
259 | } |
||
260 | |||
261 | /** |
||
262 | * Servidor |
||
263 | * se ainda não tiver o TOKEN -> Obtem (automático) |
||
264 | * se ainda não tiver iniciado -> inicia (automático) |
||
265 | * @param array $data |
||
266 | * @param string $method |
||
267 | * @return array |
||
268 | */ |
||
269 | View Code Duplication | public function servidor($data = array(), $method = 'L') |
|
279 | |||
280 | /** |
||
281 | * Situação Servidor Folha Pagamento |
||
282 | * se ainda não tiver o TOKEN -> Obtem (automático) |
||
283 | * se ainda não tiver iniciado -> inicia (automático) |
||
284 | * @param array $data |
||
285 | * @param string $method |
||
286 | * @return array |
||
287 | */ |
||
288 | View Code Duplication | public function situacaoServidorFolhaPagamento($data = array(), $method = 'L') |
|
297 | |||
298 | /** |
||
299 | * Componentes Folha Pagamento |
||
300 | * se ainda não tiver o TOKEN -> Obtem (automático) |
||
301 | * se ainda não tiver iniciado -> inicia (automático) |
||
302 | * @param array $data |
||
303 | * @param string $method |
||
304 | * @return array |
||
305 | */ |
||
306 | View Code Duplication | public function componentesFolhaPagamento($data = array(), $method = 'L') |
|
315 | |||
316 | /** |
||
317 | * Folha Pagamento |
||
318 | * se ainda não tiver o TOKEN -> Obtem (automático) |
||
319 | * se ainda não tiver iniciado -> inicia (automático) |
||
320 | * @param array $data |
||
321 | * @param string $method |
||
322 | * @return array |
||
323 | */ |
||
324 | View Code Duplication | public function folhaPagamento($data = array(), $method = 'L') |
|
333 | } |
||
334 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.