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 |
||
20 | View Code Duplication | abstract class AbstractQuery extends Query |
|
|
|||
21 | { |
||
22 | use HasValidation; |
||
23 | use FeaturesSupport; |
||
24 | |||
25 | /** |
||
26 | * AbstractQuery constructor. |
||
27 | * @param array $attributes |
||
28 | */ |
||
29 | public function __construct($attributes = []) |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | public function args(): array |
||
42 | |||
43 | /** |
||
44 | * @return array |
||
45 | */ |
||
46 | abstract protected function queryArguments(): array; |
||
47 | |||
48 | /** |
||
49 | * @param string|Model $model |
||
50 | * @param array $args |
||
51 | * @return Builder|Model <T> |
||
52 | */ |
||
53 | protected function queryFor(string $model, array $args = []): Builder |
||
57 | } |
||
58 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.