65 lines
1.2 KiB
PHP
Executable File
65 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Magento\TestModuleUsps\Model;
|
|
|
|
use Magento\Framework\Async\CancelingDeferredException;
|
|
use Magento\Framework\HTTP\AsyncClient\HttpResponseDeferredInterface;
|
|
use Magento\Framework\HTTP\AsyncClient\Response;
|
|
|
|
/**
|
|
* Mock for HTTP responses.
|
|
*/
|
|
class MockDeferredResponse implements HttpResponseDeferredInterface
|
|
{
|
|
/**
|
|
* @var Response
|
|
*/
|
|
private $response;
|
|
|
|
/**
|
|
* MockDeferredResponse constructor.
|
|
* @param Response $response
|
|
*/
|
|
public function __construct(Response $response)
|
|
{
|
|
$this->response = $response;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function cancel(bool $force = false): void
|
|
{
|
|
throw new CancelingDeferredException('Cannot be canceled');
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function isCancelled(): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function isDone(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function get(): Response
|
|
{
|
|
return $this->response;
|
|
}
|
|
}
|