| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class RemoveWishlistHandler implements MessageHandlerInterface |
||
| 14 | { |
||
| 15 | private WishlistRepositoryInterface $wishlistRepository; |
||
| 16 | |||
| 17 | private ObjectManager $wishlistManager; |
||
| 18 | |||
| 19 | public function __construct( |
||
| 20 | WishlistRepositoryInterface $wishlistRepository, |
||
| 21 | ObjectManager $wishlistManager |
||
| 22 | ) { |
||
| 23 | $this->wishlistRepository = $wishlistRepository; |
||
| 24 | $this->wishlistManager = $wishlistManager; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function __invoke(RemoveWishlist $removeWishlist) |
||
| 40 | } |
||
| 41 | } |
||
| 42 |