NoHttpRequestDirection.php 403 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Direction;
  4. use Psr\Http\Message\ResponseInterface;
  5. use Yansongda\Pay\Contract\DirectionInterface;
  6. use Yansongda\Pay\Contract\PackerInterface;
  7. class NoHttpRequestDirection implements DirectionInterface
  8. {
  9. public function parse(PackerInterface $packer, ?ResponseInterface $response): ?ResponseInterface
  10. {
  11. return $response;
  12. }
  13. }