| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
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 |
||
| 23 | View Code Duplication | class GetPost implements ServiceInterface |
|
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var PostRepository |
||
| 27 | */ |
||
| 28 | private $postRepository; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var UuidInterface |
||
| 32 | */ |
||
| 33 | private $uuid; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var LoggerInterface |
||
| 37 | */ |
||
| 38 | private $logger; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * GetPost constructor. |
||
| 42 | * @param PostRepository $postRepository |
||
| 43 | * @param UuidInterface $uuid |
||
| 44 | * @param LoggerInterface $logger |
||
| 45 | */ |
||
| 46 | public function __construct(PostRepository $postRepository, UuidInterface $uuid, LoggerInterface $logger) |
||
| 47 | { |
||
| 48 | $this->postRepository = $postRepository; |
||
| 49 | $this->uuid = $uuid; |
||
| 50 | $this->logger = $logger; |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return stdClass|boolean |
||
| 55 | */ |
||
| 56 | public function run() |
||
| 65 | } |
||
| 66 | } |
||
| 67 |