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 |
||
7 | View Code Duplication | class ResourceComplexType extends ResourceType |
|
8 | { |
||
9 | /** |
||
10 | * Create new instance of ResourceComplexType. |
||
11 | * @param \ReflectionClass $instanceType Instance type for the complex type |
||
12 | * @param TComplexTypeType $complex Object containing complex type metadata |
||
13 | * |
||
14 | * @throws \InvalidArgumentException |
||
15 | */ |
||
16 | public function __construct(\ReflectionClass $instanceType, TComplexTypeType $complex) |
||
29 | } |
||
30 |