AccountInterface.php 314 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Controller;
  7. use Magento\Framework\App\ActionInterface;
  8. /**
  9. * Interface \Magento\Customer\Controller\AccountInterface
  10. *
  11. */
  12. interface AccountInterface extends ActionInterface
  13. {
  14. }