| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class DummyImageTaggingService implements ImageTaggingServiceInterface |
||
| 9 | { |
||
| 10 | /** @var EntityManagerInterface */ |
||
| 11 | private $entityManager; |
||
| 12 | |||
| 13 | public function __construct( |
||
| 14 | EntityManagerInterface $entityManager) |
||
| 15 | { |
||
| 16 | $this->entityManager = $entityManager; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function tagImage(Image $image, bool $overwriteExisting = false): bool |
||
| 29 | } |
||
| 30 | } |
||
| 31 |