ActionStub.php 420 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Backend\Test\Unit\App\Action\Stub;
  7. class ActionStub extends \Magento\Backend\App\Action
  8. {
  9. /**
  10. * @return \Magento\Framework\App\ResponseInterface|\Magento\Framework\Controller\ResultInterface|void
  11. */
  12. public function execute()
  13. {
  14. // Empty method stub for test
  15. }
  16. }