| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class ClearCookieWishlistItemsListener |
||
| 18 | { |
||
| 19 | private StorageInterface $cookieStorage; |
||
| 20 | |||
| 21 | private string $wishlistCookieToken; |
||
| 22 | |||
| 23 | public function __construct(StorageInterface $cookieStorage, string $wishlistCookieToken) |
||
| 24 | { |
||
| 25 | $this->cookieStorage = $cookieStorage; |
||
| 26 | $this->wishlistCookieToken = $wishlistCookieToken; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function onInteractiveLogin(InteractiveLoginEvent $interactiveLoginEvent): void |
||
| 38 | } |
||
| 39 | } |
||
| 40 |