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 | class ObserverVisitor implements ObserverVisitorInterface |
||
36 | { |
||
37 | |||
38 | /** |
||
39 | * The DI container builder instance. |
||
40 | * |
||
41 | * @var \Symfony\Component\DependencyInjection\TaggedContainerInterface |
||
42 | */ |
||
43 | protected $container; |
||
44 | |||
45 | /** |
||
46 | * The constructor to initialize the instance. |
||
47 | * |
||
48 | * @param \Symfony\Component\DependencyInjection\TaggedContainerInterface $container The container instance |
||
49 | */ |
||
50 | 1 | public function __construct(TaggedContainerInterface $container) |
|
54 | |||
55 | /** |
||
56 | * Visitor implementation that initializes the observers of the passed subject. |
||
57 | * |
||
58 | * @param \TechDivision\Import\Subjects\SubjectInterface $subject The subject to initialize the observers for |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | 1 | public function visit(SubjectInterface $subject) |
|
73 | |||
74 | /** |
||
75 | * Prepare the observers defined in the system configuration. |
||
76 | * |
||
77 | * @param \TechDivision\Import\Subjects\SubjectInterface $subject The subject to prepare the observers for |
||
78 | * @param array $observers The array with the observers |
||
79 | * @param string $type The actual observer type |
||
80 | * |
||
81 | * @return void |
||
82 | */ |
||
83 | 1 | View Code Duplication | protected function prepareObservers(SubjectInterface $subject, array $observers, $type = null) |
117 | } |
||
118 |
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.