| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function sync(): PromiseInterface |
||
| 21 | { |
||
| 22 | return $this->getTransport()->requestPsr7( |
||
| 23 | new Request( |
||
| 24 | 'POST', |
||
| 25 | $this->getTransport()->getBaseURL() . 'users/sync', |
||
| 26 | $this->getTransport()->getHeaders() |
||
| 27 | ) |
||
| 28 | )->then(function () { |
||
| 29 | return $this->refresh(); |
||
| 30 | }); |
||
| 31 | } |
||
| 32 | } |
||
| 33 |