AbstractAccount.php 386 B

123456789101112131415161718
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Customer\Controller;
  8. use Magento\Framework\App\Action\Action;
  9. /**
  10. * Class AbstractAccount
  11. * @package Magento\Customer\Controller
  12. * @SuppressWarnings(PHPMD.NumberOfChildren)
  13. */
  14. abstract class AbstractAccount extends Action implements AccountInterface
  15. {
  16. }