Total Complexity | 2 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class Request implements \Promopult\Integra\RequestInterface |
||
15 | { |
||
16 | private const PARAM_NAME = 'k'; |
||
17 | private const PARAM_VALUE_PREFIX = 'zaa'; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $method; |
||
23 | |||
24 | /** |
||
25 | * @var array |
||
26 | */ |
||
27 | private $args; |
||
28 | |||
29 | /** |
||
30 | * @var CredentialsInterface |
||
31 | */ |
||
32 | private $identity; |
||
33 | |||
34 | /** |
||
35 | * @var CryptInterface |
||
36 | */ |
||
37 | private $crypt; |
||
38 | |||
39 | /** |
||
40 | * Request constructor. |
||
41 | * |
||
42 | * @param string $method |
||
43 | * @param array $args |
||
44 | * @param CredentialsInterface $identity |
||
45 | * @param CryptInterface $crypt |
||
46 | */ |
||
47 | public function __construct( |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * {@inheritDoc} |
||
61 | */ |
||
62 | public function getCryptUrl(): string |
||
73 |