AsynchronousSchemaRequestProcessorMock.php 396 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\WebapiAsync\Controller\Rest;
  7. class AsynchronousSchemaRequestProcessorMock extends AsynchronousSchemaRequestProcessor
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function canProcess(\Magento\Framework\Webapi\Rest\Request $request)
  13. {
  14. return true;
  15. }
  16. }