仓库初始化
This commit is contained in:
148
addons/epay/library/v3/Yansongda/Pay/Rocket.php
Normal file
148
addons/epay/library/v3/Yansongda/Pay/Rocket.php
Normal file
@@ -0,0 +1,148 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Yansongda\Pay;
|
||||
|
||||
use ArrayAccess;
|
||||
use JsonSerializable as JsonSerializableInterface;
|
||||
use Psr\Http\Message\MessageInterface;
|
||||
use Psr\Http\Message\RequestInterface;
|
||||
use Yansongda\Pay\Contract\DirectionInterface;
|
||||
use Yansongda\Pay\Contract\PackerInterface;
|
||||
use Yansongda\Supports\Collection;
|
||||
use Yansongda\Supports\Traits\Accessable;
|
||||
use Yansongda\Supports\Traits\Arrayable;
|
||||
use Yansongda\Supports\Traits\Serializable;
|
||||
|
||||
class Rocket implements JsonSerializableInterface, ArrayAccess
|
||||
{
|
||||
use Accessable;
|
||||
use Arrayable;
|
||||
use Serializable;
|
||||
|
||||
private ?RequestInterface $radar = null;
|
||||
|
||||
private array $params = [];
|
||||
|
||||
private ?Collection $payload = null;
|
||||
|
||||
private string $packer = PackerInterface::class;
|
||||
|
||||
private string $direction = DirectionInterface::class;
|
||||
|
||||
/**
|
||||
* @var null|array|Collection|MessageInterface
|
||||
*/
|
||||
private $destination;
|
||||
|
||||
private ?MessageInterface $destinationOrigin = null;
|
||||
|
||||
public function getRadar(): ?RequestInterface
|
||||
{
|
||||
return $this->radar;
|
||||
}
|
||||
|
||||
public function setRadar(?RequestInterface $radar): Rocket
|
||||
{
|
||||
$this->radar = $radar;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getParams(): array
|
||||
{
|
||||
return $this->params;
|
||||
}
|
||||
|
||||
public function setParams(array $params): Rocket
|
||||
{
|
||||
$this->params = $params;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function mergeParams(array $params): Rocket
|
||||
{
|
||||
$this->params = array_merge($this->params, $params);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getPayload(): ?Collection
|
||||
{
|
||||
return $this->payload;
|
||||
}
|
||||
|
||||
public function setPayload(?Collection $payload): Rocket
|
||||
{
|
||||
$this->payload = $payload;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function mergePayload(array $payload): Rocket
|
||||
{
|
||||
if (empty($this->payload)) {
|
||||
$this->payload = new Collection();
|
||||
}
|
||||
|
||||
$this->payload = $this->payload->merge($payload);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getPacker(): string
|
||||
{
|
||||
return $this->packer;
|
||||
}
|
||||
|
||||
public function setPacker(string $packer): Rocket
|
||||
{
|
||||
$this->packer = $packer;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getDirection(): string
|
||||
{
|
||||
return $this->direction;
|
||||
}
|
||||
|
||||
public function setDirection(string $direction): Rocket
|
||||
{
|
||||
$this->direction = $direction;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return null|array|Collection|MessageInterface
|
||||
*/
|
||||
public function getDestination()
|
||||
{
|
||||
return $this->destination;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param null|array|Collection|MessageInterface $destination
|
||||
*/
|
||||
public function setDestination($destination): Rocket
|
||||
{
|
||||
$this->destination = $destination;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getDestinationOrigin(): ?MessageInterface
|
||||
{
|
||||
return $this->destinationOrigin;
|
||||
}
|
||||
|
||||
public function setDestinationOrigin(?MessageInterface $destinationOrigin): Rocket
|
||||
{
|
||||
$this->destinationOrigin = $destinationOrigin;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user