Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | class WishlistPage extends Page |
||
9 | { |
||
10 | /** |
||
11 | * @var LoadWishlistRouteResponse |
||
12 | */ |
||
13 | protected $wishlist; |
||
14 | |||
15 | public function getWishlist(): LoadWishlistRouteResponse |
||
16 | { |
||
17 | return $this->wishlist; |
||
18 | } |
||
19 | |||
20 | public function setWishlist(LoadWishlistRouteResponse $wishlist): void |
||
23 | } |
||
24 | } |
||
25 |