| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class Service implements RequestFactoryInterface |
||
| 8 | { |
||
| 9 | protected ClientInterface $httpClient; |
||
| 10 | protected CredentialsInterface $credentials; |
||
| 11 | |||
| 12 | public function __construct( |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Creates request with necessary headers & encoded body. |
||
| 22 | */ |
||
| 23 | public function createRequest( |
||
| 36 |