| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class ResponseHandlerBuilder implements IFabricInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param string $data |
||
| 16 | * @param string|null $curlResponse |
||
| 17 | * @param string|null $dto |
||
| 18 | * @param int $resultMode |
||
| 19 | * @return IResponseInterface |
||
| 20 | * @throws \Exception |
||
| 21 | */ |
||
| 22 | public static function make(string $data, string $curlResponse = null, string $dto = null): IResponseInterface |
||
| 40 |