| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | 3 | public function createSubscription(StoreSubscriptionRequest $subscriptionRequest): PayPalResponse |
|
| 22 | { |
||
| 23 | 3 | $this->client->prepareRequest('POST', $this->baseUri . '/v1/billing/subscriptions'); |
|
| 24 | 3 | $this->setAuthentication()->setJson($subscriptionRequest->toArray()); |
|
| 25 | |||
| 26 | 3 | return new PostResponse($this->client->execute()); |
|
| 27 | } |
||
| 29 |