| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class WishlistExtension extends AbstractExtension |
||
| 20 | { |
||
| 21 | private WishlistRepositoryInterface $wishlistRepository; |
||
| 22 | |||
| 23 | public function __construct( |
||
| 24 | |||
| 25 | WishlistRepositoryInterface $wishlistRepository |
||
| 26 | ) { |
||
| 27 | $this->wishlistRepository = $wishlistRepository; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getFunctions() |
||
| 34 | ]; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function injectWishlists() |
||
| 43 | } |
||
| 44 | } |