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 AuraBuilder implements Builder |
||
11 | { |
||
12 | /** |
||
13 | * @var QueryFactory |
||
14 | */ |
||
15 | protected $factory; |
||
16 | |||
17 | /** |
||
18 | * @var QueryInterface |
||
19 | */ |
||
20 | protected $query; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $table; |
||
26 | |||
27 | /** |
||
28 | * @param QueryFactory $factory |
||
29 | */ |
||
30 | 1 | public function __construct(QueryFactory $factory) |
|
34 | |||
35 | /** |
||
36 | * @param string $key |
||
37 | * @param mixed $value |
||
38 | * |
||
39 | * @return static |
||
40 | */ |
||
41 | 1 | public function cloneWith($key, $value) |
|
48 | |||
49 | /** |
||
50 | * @return array |
||
51 | * |
||
52 | * @throws LogicException |
||
53 | */ |
||
54 | 1 | public function build() |
|
65 | |||
66 | /** |
||
67 | * @return static |
||
68 | * |
||
69 | * @throws LogicException |
||
70 | */ |
||
71 | View Code Duplication | public function delete() |
|
82 | |||
83 | /** |
||
84 | * @param array $data |
||
85 | * |
||
86 | * @return static |
||
87 | * |
||
88 | * @throws LogicException |
||
89 | */ |
||
90 | 1 | View Code Duplication | public function insert(array $data) |
102 | |||
103 | /** |
||
104 | * @param int $limit |
||
105 | * @param int $offset |
||
106 | * |
||
107 | * @return static |
||
108 | * |
||
109 | * @throws LogicException |
||
110 | */ |
||
111 | 1 | public function limit($limit, $offset = 0) |
|
123 | |||
124 | /** |
||
125 | * @param string $order |
||
126 | * |
||
127 | * @return static |
||
128 | * |
||
129 | * @throws LogicException |
||
130 | */ |
||
131 | View Code Duplication | public function orderBy($order) |
|
146 | |||
147 | /** |
||
148 | * @param mixed $where |
||
149 | * |
||
150 | * @return static |
||
151 | * |
||
152 | * @throws LogicException |
||
153 | */ |
||
154 | public function orWhere($where) |
||
165 | |||
166 | /** |
||
167 | * @param string $columns |
||
168 | * |
||
169 | * @return static |
||
170 | * |
||
171 | * @throws LogicException |
||
172 | */ |
||
173 | 1 | View Code Duplication | public function select($columns = "*") |
189 | |||
190 | /** |
||
191 | * @param string $table |
||
192 | * |
||
193 | * @return static |
||
194 | */ |
||
195 | 1 | public function table($table) |
|
199 | |||
200 | /** |
||
201 | * @param array $data |
||
202 | * |
||
203 | * @return static |
||
204 | * |
||
205 | * @throws LogicException |
||
206 | */ |
||
207 | View Code Duplication | public function update(array $data) |
|
219 | |||
220 | /** |
||
221 | * @param mixed $where |
||
222 | * |
||
223 | * @return static |
||
224 | * |
||
225 | * @throws LogicException |
||
226 | */ |
||
227 | 1 | public function where($where) |
|
238 | } |
||
239 |
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.