Skip to content

Commit 456e5b0

Browse files
committed
Remove unused Settings properties
1 parent a328b8a commit 456e5b0

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

src/Settings.php

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,19 @@
22

33
namespace ClickHouseDB;
44

5-
use ClickHouseDB\Transport\Http;
6-
75
class Settings
86
{
9-
/**
10-
* @var Http
11-
*/
12-
private $client = null;
13-
147
/**
158
* @var array
169
*/
1710
private $settings = [];
1811

1912
private $_ReadOnlyUser = false;
2013

21-
/**
22-
* @var bool
23-
*/
24-
private $_isHttps = false;
25-
2614
/**
2715
* Settings constructor.
28-
* @param Http $client
2916
*/
30-
public function __construct(Http $client)
17+
public function __construct()
3118
{
3219
$default = [
3320
'extremes' => false,
@@ -38,7 +25,6 @@ public function __construct(Http $client)
3825
];
3926

4027
$this->settings = $default;
41-
$this->client = $client;
4228
}
4329

4430
/**

0 commit comments

Comments
 (0)