| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function buildServiceProviderConfig() |
||
| 22 | { |
||
| 23 | $result = new ServiceProviderConfig( |
||
| 24 | $this->documentationUri, |
||
| 25 | $this->patchSupported, |
||
| 26 | $this->bulkSupported, |
||
| 27 | $this->bulkMaxOperations, |
||
| 28 | $this->bulkMaxPayloadSize, |
||
| 29 | $this->filterSupported, |
||
| 30 | $this->filterMaxResults, |
||
| 31 | $this->eTagSupported, |
||
| 32 | $this->changePasswordSupported, |
||
| 33 | $this->sortSupported, |
||
| 34 | $this->authenticationSchemes |
||
| 35 | ); |
||
| 36 | |||
| 37 | return $result; |
||
| 38 | } |
||
| 40 |