| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 21 | public function __invoke(DeleteThemeFilesMessage $message): void |
||
| 22 | { |
||
| 23 | $currentPath = $this->pathBuilder->assemblePath($message->getSalesChannelId(), $message->getThemeId()); |
||
| 24 | |||
| 25 | if ($currentPath === $message->getThemePath()) { |
||
| 26 | return; |
||
| 27 | } |
||
| 28 | |||
| 29 | $this->filesystem->deleteDirectory($message->getThemePath()); |
||
| 30 | } |
||
| 32 |