IndexStub.php 425 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Contact\Test\Unit\Controller\Stub;
  7. class IndexStub extends \Magento\Contact\Controller\Index
  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. }