| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 62 | public function getCryptUrl(): string |
||
| 63 | { |
||
| 64 | return $this->identity->getApiHost() . '/' |
||
| 65 | . $this->identity->getPartnerPath() . '/' |
||
| 66 | . $this->method . '?' |
||
| 67 | . self::PARAM_NAME . '=' . self::PARAM_VALUE_PREFIX |
||
| 68 | . $this->identity->getHash() |
||
| 69 | . urlencode($this->crypt->encrypt(json_encode($this->args), $this->identity->getCryptKey())) |
||
| 70 | ; |
||
| 73 |