AbstractIndex.php 386 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Wishlist\Controller;
  7. use Magento\Framework\App\Action;
  8. use Magento\Wishlist\Controller\IndexInterface;
  9. /**
  10. * Class AbstractIndex
  11. * @package Magento\Wishlist\Controller\Index
  12. */
  13. abstract class AbstractIndex extends Action\Action implements IndexInterface
  14. {
  15. }