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 |
||
35 | View Code Duplication | class SequenceProductBundleOptionAction extends AbstractAction implements SequenceProductBundleOptionActionInterface |
|
|
|||
36 | { |
||
37 | |||
38 | /** |
||
39 | * Helper method that create/update the passed entity, depending on |
||
40 | * the entity's status. |
||
41 | * |
||
42 | * @param array $row The entity data to create/update |
||
43 | * @param string|null $name The name of the prepared statement that has to be executed |
||
44 | * |
||
45 | * @return string The last inserted ID |
||
46 | */ |
||
47 | public function persist(array $row, $name = null) |
||
56 | |||
57 | /** |
||
58 | * Creates's the entity with the passed attributes. |
||
59 | * |
||
60 | * @param array $row The attributes of the entity to create |
||
61 | * @param string|null $name The name of the prepared statement that has to be executed |
||
62 | * |
||
63 | * @return string The last inserted ID |
||
64 | */ |
||
65 | public function create(array $row, $name = null) |
||
69 | |||
70 | /** |
||
71 | * Return's the next available sequence product bundle option value. |
||
72 | * |
||
73 | * @return integer The next available sequence product bundle option value |
||
74 | */ |
||
75 | public function nextIdentifier() |
||
79 | } |
||
80 |
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.