| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| 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 | ) { |
||
| 28 | $this->wishlistRepository = $wishlistRepository; |
||
| 29 | |||
| 30 | } |
||
| 31 | |||
| 32 | public function getFunctions() |
||
| 36 | ]; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function injectWishlists() |
||
| 45 | } |
||
| 46 | } |