@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | private $degenerations = []; |
| 24 | 24 | |
| 25 | - private $supportFormats=[ |
|
| 25 | + private $supportFormats = [ |
|
| 26 | 26 | "FORMAT\\s+TSVRaw", |
| 27 | 27 | "FORMAT\\s+TSVWithNamesAndTypes", |
| 28 | 28 | "FORMAT\\s+TSVWithNames", |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | if (null === $this->format) { |
| 72 | 72 | return false; |
| 73 | 73 | } |
| 74 | - $supportFormats = implode("|",$this->supportFormats); |
|
| 74 | + $supportFormats = implode("|", $this->supportFormats); |
|
| 75 | 75 | |
| 76 | 76 | $matches = []; |
| 77 | 77 | if (preg_match_all('%(' . $supportFormats . ')%ius', $this->sql, $matches)) { |
@@ -120,10 +120,10 @@ discard block |
||
| 120 | 120 | $proto = 'https'; |
| 121 | 121 | } |
| 122 | 122 | $uri = $proto . '://' . $this->_host; |
| 123 | - if (stripos($this->_host,'/')!==false || stripos($this->_host,':')!==false) { |
|
| 123 | + if (stripos($this->_host, '/') !== false || stripos($this->_host, ':') !== false) { |
|
| 124 | 124 | return $uri; |
| 125 | 125 | } |
| 126 | - if (intval($this->_port)>0) { |
|
| 126 | + if (intval($this->_port) > 0) { |
|
| 127 | 127 | return $uri . ':' . $this->_port; |
| 128 | 128 | } |
| 129 | 129 | return $uri; |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | $new->timeOut($this->settings()->getTimeOut()); |
| 198 | - $new->connectTimeOut($this->_connectTimeOut);//->keepAlive(); // one sec |
|
| 198 | + $new->connectTimeOut($this->_connectTimeOut); //->keepAlive(); // one sec |
|
| 199 | 199 | $new->verbose(boolval($this->_verbose)); |
| 200 | 200 | |
| 201 | 201 | return $new; |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | { |
| 249 | 249 | |
| 250 | 250 | if ($sql instanceof Query) { |
| 251 | - $query=$sql; |
|
| 251 | + $query = $sql; |
|
| 252 | 252 | } else { |
| 253 | 253 | $query = new Query($sql); |
| 254 | 254 | } |
@@ -610,10 +610,10 @@ discard block |
||
| 610 | 610 | * @return Statement |
| 611 | 611 | * @throws \ClickHouseDB\Exception\TransportException |
| 612 | 612 | */ |
| 613 | - private function streaming(Stream $streamRW,CurlerRequest $request) |
|
| 613 | + private function streaming(Stream $streamRW, CurlerRequest $request) |
|
| 614 | 614 | { |
| 615 | - $callable=$streamRW->getClosure(); |
|
| 616 | - $stream=$streamRW->getStream(); |
|
| 615 | + $callable = $streamRW->getClosure(); |
|
| 616 | + $stream = $streamRW->getStream(); |
|
| 617 | 617 | |
| 618 | 618 | |
| 619 | 619 | |
@@ -624,11 +624,11 @@ discard block |
||
| 624 | 624 | if ($streamRW->isWrite()) |
| 625 | 625 | { |
| 626 | 626 | |
| 627 | - $callable = function ($ch, $fd, $length) use ($stream) { |
|
| 627 | + $callable = function($ch, $fd, $length) use ($stream) { |
|
| 628 | 628 | return ($line = fread($stream, $length)) ? $line : ''; |
| 629 | 629 | }; |
| 630 | 630 | } else { |
| 631 | - $callable = function ($ch, $fd) use ($stream) { |
|
| 631 | + $callable = function($ch, $fd) use ($stream) { |
|
| 632 | 632 | return fwrite($stream, $fd); |
| 633 | 633 | }; |
| 634 | 634 | } |
@@ -663,7 +663,7 @@ discard block |
||
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | |
| 666 | - $this->_curler->execOne($request,true); |
|
| 666 | + $this->_curler->execOne($request, true); |
|
| 667 | 667 | $response = new Statement($request); |
| 668 | 668 | if ($response->isError()) { |
| 669 | 669 | $response->error(); |
@@ -685,11 +685,11 @@ discard block |
||
| 685 | 685 | * @return Statement |
| 686 | 686 | * @throws \ClickHouseDB\Exception\TransportException |
| 687 | 687 | */ |
| 688 | - public function streamRead(Stream $streamRead,$sql,$bindings=[]) |
|
| 688 | + public function streamRead(Stream $streamRead, $sql, $bindings = []) |
|
| 689 | 689 | { |
| 690 | - $sql=$this->prepareQuery($sql,$bindings); |
|
| 691 | - $request=$this->getRequestRead($sql); |
|
| 692 | - return $this->streaming($streamRead,$request); |
|
| 690 | + $sql = $this->prepareQuery($sql, $bindings); |
|
| 691 | + $request = $this->getRequestRead($sql); |
|
| 692 | + return $this->streaming($streamRead, $request); |
|
| 693 | 693 | |
| 694 | 694 | } |
| 695 | 695 | |
@@ -700,10 +700,10 @@ discard block |
||
| 700 | 700 | * @return Statement |
| 701 | 701 | * @throws \ClickHouseDB\Exception\TransportException |
| 702 | 702 | */ |
| 703 | - public function streamWrite(Stream $streamWrite,$sql,$bindings=[]) |
|
| 703 | + public function streamWrite(Stream $streamWrite, $sql, $bindings = []) |
|
| 704 | 704 | { |
| 705 | - $sql=$this->prepareQuery($sql,$bindings); |
|
| 705 | + $sql = $this->prepareQuery($sql, $bindings); |
|
| 706 | 706 | $request = $this->writeStreamData($sql); |
| 707 | - return $this->streaming($streamWrite,$request); |
|
| 707 | + return $this->streaming($streamWrite, $request); |
|
| 708 | 708 | } |
| 709 | 709 | } |
@@ -75,7 +75,7 @@ |
||
| 75 | 75 | $markers = $this->bindings; |
| 76 | 76 | |
| 77 | 77 | // ------ if/else conditions & if[set|int]/else conditions ----- |
| 78 | - $sql = preg_replace_callback('#\{if(.{0,}?)\s([^\}]+?)}([^\{]+?)(\{else\}([^\{]+?)?)?\s*\{\/if}#sui', function ($matches) use ($markers) { |
|
| 78 | + $sql = preg_replace_callback('#\{if(.{0,}?)\s([^\}]+?)}([^\{]+?)(\{else\}([^\{]+?)?)?\s*\{\/if}#sui', function($matches) use ($markers) { |
|
| 79 | 79 | return self::__ifsets($matches, $markers); |
| 80 | 80 | } |
| 81 | 81 | , $sql); |