@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | //reset instance |
101 | 101 | $this->reset(); |
102 | 102 | |
103 | - $this->logger->debug('Begin execution of SQL query [' . $this->query .']'); |
|
103 | + $this->logger->debug('Begin execution of SQL query [' . $this->query . ']'); |
|
104 | 104 | |
105 | 105 | //for database query execution time |
106 | 106 | $benchmarkMarkerKey = $this->getBenchmarkKey(); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | if ((double) $responseTime >= 1.000000) { |
118 | 118 | $this->logger->warning( |
119 | 119 | 'High response time while processing database query [' . $this->query . '].' |
120 | - . ' The response time is [' .$responseTime . '] sec.' |
|
120 | + . ' The response time is [' . $responseTime . '] sec.' |
|
121 | 121 | ); |
122 | 122 | } |
123 | 123 |
@@ -137,7 +137,7 @@ |
||
137 | 137 | */ |
138 | 138 | $TIMEZONE = get_config('server_timezone', 'UTC'); |
139 | 139 | if (!date_default_timezone_set($TIMEZONE)) { |
140 | - show_error('Invalid server timezone configuration "' .$TIMEZONE. '"'); |
|
140 | + show_error('Invalid server timezone configuration "' . $TIMEZONE . '"'); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |