| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class CreateNewWishlist |
||
| 17 | { |
||
| 18 | private TokenStorageInterface $tokenStorage; |
||
| 19 | |||
| 20 | private WishlistFactoryInterface $wishlistFactory; |
||
| 21 | |||
| 22 | public function __construct(TokenStorageInterface $tokenStorage, WishlistFactoryInterface $wishlistFactory) |
||
| 23 | { |
||
| 24 | $this->tokenStorage = $tokenStorage; |
||
| 25 | $this->wishlistFactory = $wishlistFactory; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getTokenStorage(): TokenStorageInterface |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getWishlistFactory(): WishlistFactoryInterface |
||
| 36 | } |
||
| 37 | } |