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 |
||
| 10 | class CatalogFactoryTest extends PHPUnit_Framework_TestCase |
||
|
|
|||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @test |
||
| 14 | */ |
||
| 15 | View Code Duplication | public function getCatalog_IntegrationTest_CatalogJSONIsValid_CatalogIsReturned() |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @test |
||
| 36 | * @expectedException Wambo\Catalog\Error\CatalogException |
||
| 37 | */ |
||
| 38 | View Code Duplication | public function getCatalog_IntegrationTest_CatalogJSONIsInvalid_CatalogExceptionIsThrown() |
|
| 57 | } |
||
| 58 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.