1 | <?php |
||
8 | class Config |
||
9 | { |
||
10 | /** |
||
11 | * Curl verbose logging option |
||
12 | * |
||
13 | * @var int |
||
14 | */ |
||
15 | protected $curlVerbose; |
||
16 | |||
17 | /** |
||
18 | * Constructor |
||
19 | * |
||
20 | * @param int $curlVerbose |
||
21 | */ |
||
22 | public function __construct(int $curlVerbose) |
||
26 | |||
27 | /** |
||
28 | * Returns Curl verbose logging option |
||
29 | * |
||
30 | * @return int |
||
31 | */ |
||
32 | public function getCurlVerbose() |
||
36 | |||
37 | /** |
||
38 | * Set Curl verbose logging option |
||
39 | * |
||
40 | * @param int $curlVerbose |
||
41 | * |
||
42 | * @return Config |
||
43 | */ |
||
44 | public function setCurlVerbose($curlVerbose) |
||
50 | } |
||
51 |