@@ -104,7 +104,7 @@ |
||
104 | 104 | /** |
105 | 105 | * @param string $sql |
106 | 106 | * @param iterable $data |
107 | - * @param $callback |
|
107 | + * @param callable $callback |
|
108 | 108 | * |
109 | 109 | * @return bool |
110 | 110 | */ |
@@ -175,7 +175,7 @@ |
||
175 | 175 | $sql, |
176 | 176 | $values !== null ? $values : [], |
177 | 177 | $index, |
178 | - $assoc !== null ? $assoc : true |
|
178 | + $assoc !== null ? $assoc : true |
|
179 | 179 | ); |
180 | 180 | } |
181 | 181 | catch(\Exception $e){ |
@@ -86,7 +86,7 @@ |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | - * @param $result |
|
89 | + * @param resource $result |
|
90 | 90 | * @param string|null $index |
91 | 91 | * @param bool $assoc |
92 | 92 | * |
@@ -74,7 +74,7 @@ |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | /** @inheritdoc */ |
77 | - public function getServerInfo():?string{ |
|
77 | + public function getServerInfo(): ?string{ |
|
78 | 78 | $ver = pg_version($this->db); |
79 | 79 | |
80 | 80 | return 'PostgreSQL '.$ver['server'].' ('.$ver['server_encoding'].', date style: '.$ver['DateStyle'].', time zone: '.$ver['TimeZone'].')'; |
@@ -24,6 +24,7 @@ |
||
24 | 24 | * @param \chillerlan\Database\Drivers\DriverInterface $db |
25 | 25 | * @param \chillerlan\Database\Dialects\Dialect $dialect |
26 | 26 | * @param \Psr\Log\LoggerInterface|null $logger |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function __construct(DriverInterface $db, Dialect $dialect, LoggerInterface $logger = null); |
29 | 30 |
@@ -22,6 +22,7 @@ |
||
22 | 22 | * @param iterable|null $data |
23 | 23 | * @param string|null $sourceEncoding |
24 | 24 | * @param string $destEncoding |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function __construct(iterable $data = null, string $sourceEncoding = null, string $destEncoding = null); |
27 | 28 |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | elseif(in_array(strtolower($val2), ['null', 'false', 'true', 'unknown'], true)){ |
100 | 100 | $where[] = strtoupper($val2); |
101 | 101 | } |
102 | - else { |
|
102 | + else{ |
|
103 | 103 | |
104 | 104 | if($bind){ |
105 | 105 | $where[] = '?'; |
@@ -158,9 +158,9 @@ discard block |
||
158 | 158 | $where = []; |
159 | 159 | |
160 | 160 | foreach($this->where as $k => $v){ |
161 | - $last = $this->where[$k-1] ?? false; |
|
161 | + $last = $this->where[$k - 1] ?? false; |
|
162 | 162 | |
163 | - if(in_array($v, $this->joinArgs + ['(', ')'], true)){ |
|
163 | + if(in_array($v, $this->joinArgs + ['(', ')'], true)){ |
|
164 | 164 | $where[] = $v; |
165 | 165 | |
166 | 166 | continue; |
@@ -550,8 +550,8 @@ |
||
550 | 550 | : $this->dialect->quote($k).' = '.$v; //$this->db->escape($v) |
551 | 551 | } |
552 | 552 | else{ |
553 | - $this->set[] = $this->dialect->quote($k).' = ?'; |
|
554 | - $this->addBindValue($k, is_bool($v) ? (int)$v : $v);// avoid errors with PDO firebird & mysql |
|
553 | + $this->set[] = $this->dialect->quote($k).' = ?'; |
|
554 | + $this->addBindValue($k, is_bool($v) ? (int)$v : $v); // avoid errors with PDO firebird & mysql |
|
555 | 555 | } |
556 | 556 | } |
557 | 557 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | /** @inheritdoc */ |
32 | 32 | public function callback(iterable $values, callable $callback){ |
33 | - $sql = $this->sql(true); |
|
33 | + $sql = $this->sql(true); |
|
34 | 34 | |
35 | 35 | $this->debug('MultiQueryTrait::callback()', ['method' => __METHOD__, 'sql' => $sql, 'val' => $values]); |
36 | 36 |
@@ -168,7 +168,7 @@ |
||
168 | 168 | } |
169 | 169 | |
170 | 170 | /** @inheritdoc */ |
171 | - public function getServerInfo():?string{ |
|
171 | + public function getServerInfo(): ?string{ |
|
172 | 172 | |
173 | 173 | if(gettype($this->db) === 'resource'){ |
174 | 174 | $info = sqlsrv_server_info($this->db); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | // @todo |
41 | 41 | $this->pdo_options[PDO::SQLSRV_ATTR_QUERY_TIMEOUT] = $options->mssql_timeout; // doesn't seem to have an effect |
42 | 42 | $this->pdo_options[PDO::SQLSRV_ATTR_FETCHES_NUMERIC_TYPE] = true; |
43 | - $this->pdo_options[PDO::SQLSRV_ATTR_ENCODING ] = PDO::SQLSRV_ENCODING_UTF8; |
|
43 | + $this->pdo_options[PDO::SQLSRV_ATTR_ENCODING] = PDO::SQLSRV_ENCODING_UTF8; |
|
44 | 44 | |
45 | 45 | parent::__construct($options, $cache); |
46 | 46 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $dsn .= ':Server='.$this->options->host; |
53 | 53 | |
54 | 54 | if(is_numeric($this->options->port)){ |
55 | - $dsn .= ','.$this->options->port; |
|
55 | + $dsn .= ','.$this->options->port; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | $dsn .= ';Database='.$this->options->database; |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | /** @inheritdoc */ |
75 | - public function getServerInfo():?string{ |
|
75 | + public function getServerInfo(): ?string{ |
|
76 | 76 | $info = $this->db->getAttribute(PDO::ATTR_SERVER_INFO); |
77 | 77 | |
78 | 78 | if(is_array($info) && !empty($info)){ |