DirectionInterface.php 261 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Contract;
  4. use Psr\Http\Message\ResponseInterface;
  5. interface DirectionInterface
  6. {
  7. /**
  8. * @return mixed
  9. */
  10. public function parse(PackerInterface $packer, ?ResponseInterface $response);
  11. }