Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
25 | trait CurlTrait |
||
26 | { |
||
27 | /** |
||
28 | * helper to configure cURL option |
||
29 | * |
||
30 | * @access protected |
||
31 | * @param resource $ch |
||
32 | * @param int $option |
||
33 | * @param mixed $value |
||
34 | * |
||
35 | * @return void |
||
36 | * @throws \RuntimeException |
||
37 | */ |
||
38 | protected function setCurlOption($ch, int $option, $value): void |
||
45 |