We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a328b8a commit 456e5b0Copy full SHA for 456e5b0
src/Settings.php
@@ -2,32 +2,19 @@
2
3
namespace ClickHouseDB;
4
5
-use ClickHouseDB\Transport\Http;
6
-
7
class Settings
8
{
9
- /**
10
- * @var Http
11
- */
12
- private $client = null;
13
14
/**
15
* @var array
16
*/
17
private $settings = [];
18
19
private $_ReadOnlyUser = false;
20
21
22
- * @var bool
23
24
- private $_isHttps = false;
25
26
27
* Settings constructor.
28
- * @param Http $client
29
30
- public function __construct(Http $client)
+ public function __construct()
31
32
$default = [
33
'extremes' => false,
@@ -38,7 +25,6 @@ public function __construct(Http $client)
38
];
39
40
$this->settings = $default;
41
- $this->client = $client;
42
}
43
44
0 commit comments