| Total Complexity | 3 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | abstract class SingleProductCommand extends Command |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Publisher |
||
| 16 | */ |
||
| 17 | protected Publisher $publisher; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new command instance. |
||
| 21 | */ |
||
| 22 | public function __construct(Publisher $publisher) |
||
| 27 | } |
||
| 28 | |||
| 29 | protected function displayResult(Result $result): void |
||
| 53 |