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 |
||
21 | View Code Duplication | class MethodMetadata implements \Serializable |
|
|
|||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $className; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $methodName; |
||
32 | |||
33 | /** |
||
34 | * @var \ReflectionMethod |
||
35 | */ |
||
36 | protected $reflection; |
||
37 | |||
38 | /** |
||
39 | * @var ArrayHashMapInterface |
||
40 | */ |
||
41 | protected $metadata; |
||
42 | |||
43 | /** |
||
44 | * MethodMetadata constructor. |
||
45 | * |
||
46 | * @param string $className |
||
47 | * @param string $methodName |
||
48 | */ |
||
49 | public function __construct($className, $methodName) |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | public function className() |
||
66 | |||
67 | /** |
||
68 | * @return string |
||
69 | */ |
||
70 | public function methodName() |
||
74 | |||
75 | /** |
||
76 | * @return \ReflectionMethod |
||
77 | */ |
||
78 | public function reflection() |
||
82 | |||
83 | /** |
||
84 | * @return array |
||
85 | */ |
||
86 | public function metadata() |
||
90 | |||
91 | /** |
||
92 | * @param string $key |
||
93 | * @param mixed $value |
||
94 | */ |
||
95 | public function addMetadata($key, $value) |
||
99 | |||
100 | /** |
||
101 | * @param string $key |
||
102 | * |
||
103 | * @return mixed|null |
||
104 | */ |
||
105 | public function getMetadata($key) |
||
109 | |||
110 | /** |
||
111 | * @param object $obj |
||
112 | * @param array $args |
||
113 | * |
||
114 | * @return mixed |
||
115 | */ |
||
116 | public function invoke($obj, array $args = array()) |
||
120 | |||
121 | /** |
||
122 | * {@inheritdoc} |
||
123 | */ |
||
124 | public function serialize() |
||
132 | |||
133 | /** |
||
134 | * {@inheritdoc} |
||
135 | */ |
||
136 | public function unserialize($str) |
||
148 | } |
||
149 |
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.