Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class TestWishListPageController extends \PageController implements TestOnly |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private static $managed_object = TestProductWishList::class; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | private static $url_handler = [ |
||
24 | 'test-wishlist-page-path' => 'index' |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * @var array |
||
29 | */ |
||
30 | private static $extensions = [ |
||
31 | ProductWishListControllerExtension::class, |
||
32 | ]; |
||
33 | |||
34 | /** |
||
35 | * empty init |
||
36 | */ |
||
37 | public function init() |
||
43 |