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 |
||
8 | class RpcQueueBag implements QueueBagInterface |
||
9 | { |
||
10 | private $resolver; |
||
11 | private $options; |
||
12 | |||
13 | View Code Duplication | public function __construct( |
|
30 | |||
31 | /** |
||
32 | * @param $queue |
||
33 | */ |
||
34 | public function setQueue($queue) |
||
38 | |||
39 | /** |
||
40 | * @return string|mixed |
||
41 | */ |
||
42 | public function getQueue() |
||
46 | |||
47 | /** |
||
48 | * @param $qos |
||
49 | */ |
||
50 | public function setBasicQos($qos) |
||
54 | |||
55 | /** |
||
56 | * @return int |
||
57 | */ |
||
58 | public function getBasicQos() |
||
62 | |||
63 | /** |
||
64 | * @param $autoDelete |
||
65 | */ |
||
66 | public function setAutoDelete($autoDelete) |
||
70 | |||
71 | /** |
||
72 | * @return bool |
||
73 | */ |
||
74 | public function getAutoDelete() |
||
78 | |||
79 | /** |
||
80 | * @param array $arguments |
||
81 | */ |
||
82 | public function setArguments(array $arguments) |
||
86 | |||
87 | /** |
||
88 | * @return string |
||
89 | */ |
||
90 | public function getArguments() |
||
94 | |||
95 | /** |
||
96 | * @return bool |
||
97 | */ |
||
98 | public function getPassive() |
||
102 | |||
103 | /** |
||
104 | * @return bool |
||
105 | */ |
||
106 | public function getDurable() |
||
110 | |||
111 | /** |
||
112 | * @return bool |
||
113 | */ |
||
114 | public function getExclusive() |
||
118 | |||
119 | /** |
||
120 | * @return bool |
||
121 | */ |
||
122 | public function getNoWait() |
||
126 | |||
127 | /** |
||
128 | * @return null |
||
129 | */ |
||
130 | public function getTicket() |
||
134 | |||
135 | /** |
||
136 | * @return string |
||
137 | */ |
||
138 | public function getConsumerTag() |
||
142 | |||
143 | /** |
||
144 | * @return bool |
||
145 | */ |
||
146 | public function getNoAck() |
||
150 | |||
151 | /** |
||
152 | * @return bool |
||
153 | */ |
||
154 | public function getNoLocal() |
||
158 | |||
159 | /** |
||
160 | * @return array|false |
||
161 | */ |
||
162 | public function getExchangeDeclare() |
||
166 | |||
167 | /** |
||
168 | * @return string |
||
169 | */ |
||
170 | public function getExchange() |
||
174 | |||
175 | /** |
||
176 | * @return string |
||
177 | */ |
||
178 | public function getType() |
||
182 | |||
183 | /** |
||
184 | * @return array |
||
185 | */ |
||
186 | View Code Duplication | public function getQueueDeclare() |
|
199 | |||
200 | /** |
||
201 | * @return array |
||
202 | */ |
||
203 | View Code Duplication | public function getQueueConsume() |
|
216 | |||
217 | /** |
||
218 | * @param array $options |
||
219 | * @return QueueBagInterface |
||
220 | */ |
||
221 | public function registerOptions(array $options) |
||
227 | } |
||
228 |
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.