@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | class DatabaseQueryBuilder { |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * The DatabaseConnection instance |
|
| 35 | - * @var object |
|
| 36 | - */ |
|
| 33 | + /** |
|
| 34 | + * The DatabaseConnection instance |
|
| 35 | + * @var object |
|
| 36 | + */ |
|
| 37 | 37 | private $connection = null; |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -727,12 +727,12 @@ discard block |
||
| 727 | 727 | * |
| 728 | 728 | * @return string|null |
| 729 | 729 | */ |
| 730 | - protected function buildQueryPart($property, $command = ''){ |
|
| 730 | + protected function buildQueryPart($property, $command = ''){ |
|
| 731 | 731 | if (!empty($this->{$property})) { |
| 732 | 732 | return $command . $this->{$property}; |
| 733 | 733 | } |
| 734 | 734 | return null; |
| 735 | - } |
|
| 735 | + } |
|
| 736 | 736 | |
| 737 | 737 | |
| 738 | 738 | /** |
@@ -208,7 +208,7 @@ |
||
| 208 | 208 | //If is the SELECT query |
| 209 | 209 | $this->isSelectQuery = stristr($this->query, 'SELECT') !== false; |
| 210 | 210 | |
| 211 | - //if can use cache feature for this query |
|
| 211 | + //if can use cache feature for this query |
|
| 212 | 212 | $this->dbCacheStatus = get_config('cache_enable', false) && $this->cacheTtl > 0; |
| 213 | 213 | } |
| 214 | 214 | |