@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | Console::log('Ending log below with a sample error.'); |
50 | 50 | throw new Exception('Unable to write to log!'); |
51 | 51 | } |
52 | - catch(Exception $e) { |
|
52 | + catch (Exception $e) { |
|
53 | 53 | Console::logError($e, 'Sample error logging.'); |
54 | 54 | } |
55 | 55 | } |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | $ret = ''; |
85 | 85 | $longString = 'This is a really long string that when appended with the . symbol |
86 | 86 | will cause memory to be duplicated in order to create the new string.'; |
87 | - for($i = 0; $i < 10; $i++) { |
|
88 | - $ret = $ret . $longString; |
|
87 | + for ($i = 0; $i < 10; $i++) { |
|
88 | + $ret = $ret.$longString; |
|
89 | 89 | Console::logMemory($ret, 'Watch memory leak -- iteration '.$i); |
90 | 90 | } |
91 | 91 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | function displayPqp($output, $config) { |
19 | 19 | |
20 | -$css = file_get_contents(__DIR__ . '/css/pQp.css'); |
|
20 | +$css = file_get_contents(__DIR__.'/css/pQp.css'); |
|
21 | 21 | |
22 | 22 | echo <<<JAVASCRIPT |
23 | 23 | <!-- JavaScript --> |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | |
162 | 162 | echo '<div id="pqp-console" class="pqp-box">'; |
163 | 163 | |
164 | -if($logCount == 0) { |
|
164 | +if ($logCount == 0) { |
|
165 | 165 | echo '<h3>This panel has no log items.</h3>'; |
166 | 166 | } |
167 | 167 | else { |
@@ -179,25 +179,25 @@ discard block |
||
179 | 179 | <table class="main" cellspacing="0">'; |
180 | 180 | |
181 | 181 | $class = ''; |
182 | - foreach($output['logs']['console']['messages'] as $log) { |
|
182 | + foreach ($output['logs']['console']['messages'] as $log) { |
|
183 | 183 | echo '<tr class="log-'.$log['type'].'"> |
184 | 184 | <td class="type">'.$log['type'].'</td> |
185 | 185 | <td class="'.$class.'">'; |
186 | - if($log['type'] == 'log') { |
|
186 | + if ($log['type'] == 'log') { |
|
187 | 187 | echo '<div><pre>'.$log['data'].'</pre></div>'; |
188 | 188 | } |
189 | - elseif($log['type'] == 'memory') { |
|
189 | + elseif ($log['type'] == 'memory') { |
|
190 | 190 | echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['data_type'].'</em>: '.$log['name'].' </div>'; |
191 | 191 | } |
192 | - elseif($log['type'] == 'speed') { |
|
192 | + elseif ($log['type'] == 'speed') { |
|
193 | 193 | echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['name'].'</em></div>'; |
194 | 194 | } |
195 | - elseif($log['type'] == 'error') { |
|
195 | + elseif ($log['type'] == 'error') { |
|
196 | 196 | echo '<div><em>Line '.$log['line'].'</em> : '.$log['data'].' <pre>'.$log['file'].'</pre></div>'; |
197 | 197 | } |
198 | 198 | |
199 | 199 | echo '</td></tr>'; |
200 | - if($class == '') $class = 'alt'; |
|
200 | + if ($class == '') $class = 'alt'; |
|
201 | 201 | else $class = ''; |
202 | 202 | } |
203 | 203 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | |
209 | 209 | echo '<div id="pqp-speed" class="pqp-box">'; |
210 | 210 | |
211 | -if($output['logs']['speedCount'] == 0) { |
|
211 | +if ($output['logs']['speedCount'] == 0) { |
|
212 | 212 | echo '<h3>This panel has no log items.</h3>'; |
213 | 213 | } |
214 | 214 | else { |
@@ -219,13 +219,13 @@ discard block |
||
219 | 219 | <table class="main" cellspacing="0">'; |
220 | 220 | |
221 | 221 | $class = ''; |
222 | - foreach($output['logs']['console'] as $log) { |
|
223 | - if($log['type'] == 'speed') { |
|
222 | + foreach ($output['logs']['console'] as $log) { |
|
223 | + if ($log['type'] == 'speed') { |
|
224 | 224 | echo '<tr class="log-'.$log['type'].'"> |
225 | 225 | <td class="'.$class.'">'; |
226 | 226 | echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['name'].'</em></div>'; |
227 | 227 | echo '</td></tr>'; |
228 | - if($class == '') $class = 'alt'; |
|
228 | + if ($class == '') $class = 'alt'; |
|
229 | 229 | else $class = ''; |
230 | 230 | } |
231 | 231 | } |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | |
238 | 238 | echo '<div id="pqp-queries" class="pqp-box">'; |
239 | 239 | |
240 | -if($output['queryTotals']['count'] == 0) { |
|
240 | +if ($output['queryTotals']['count'] == 0) { |
|
241 | 241 | echo '<h3>This panel has no log items.</h3>'; |
242 | 242 | } |
243 | 243 | else { |
@@ -249,10 +249,10 @@ discard block |
||
249 | 249 | <table class="main" cellspacing="0">'; |
250 | 250 | |
251 | 251 | $class = ''; |
252 | - foreach($output['queries'] as $query) { |
|
252 | + foreach ($output['queries'] as $query) { |
|
253 | 253 | echo '<tr> |
254 | 254 | <td class="'.$class.'">'.$query['sql']; |
255 | - if($query['explain']) { |
|
255 | + if ($query['explain']) { |
|
256 | 256 | echo '<em> |
257 | 257 | Possible keys: <b>'.$query['explain']['possible_keys'].'</b> · |
258 | 258 | Key Used: <b>'.$query['explain']['key'].'</b> · |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | </em>'; |
263 | 263 | } |
264 | 264 | echo '</td></tr>'; |
265 | - if($class == '') $class = 'alt'; |
|
265 | + if ($class == '') $class = 'alt'; |
|
266 | 266 | else $class = ''; |
267 | 267 | } |
268 | 268 | |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | |
274 | 274 | echo '<div id="pqp-memory" class="pqp-box">'; |
275 | 275 | |
276 | -if($output['logs']['memoryCount'] == 0) { |
|
276 | +if ($output['logs']['memoryCount'] == 0) { |
|
277 | 277 | echo '<h3>This panel has no log items.</h3>'; |
278 | 278 | } |
279 | 279 | else { |
@@ -284,12 +284,12 @@ discard block |
||
284 | 284 | <table class="main" cellspacing="0">'; |
285 | 285 | |
286 | 286 | $class = ''; |
287 | - foreach($output['logs']['console'] as $log) { |
|
288 | - if($log['type'] == 'memory') { |
|
287 | + foreach ($output['logs']['console'] as $log) { |
|
288 | + if ($log['type'] == 'memory') { |
|
289 | 289 | echo '<tr class="log-'.$log['type'].'">'; |
290 | 290 | echo '<td class="'.$class.'"><b>'.$log['data'].'</b> <em>'.$log['dataType'].'</em>: '.$log['name'].'</td>'; |
291 | 291 | echo '</tr>'; |
292 | - if($class == '') $class = 'alt'; |
|
292 | + if ($class == '') $class = 'alt'; |
|
293 | 293 | else $class = ''; |
294 | 294 | } |
295 | 295 | } |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | |
302 | 302 | echo '<div id="pqp-files" class="pqp-box">'; |
303 | 303 | |
304 | -if($output['fileTotals']['count'] == 0) { |
|
304 | +if ($output['fileTotals']['count'] == 0) { |
|
305 | 305 | echo '<h3>This panel has no log items.</h3>'; |
306 | 306 | } |
307 | 307 | else { |
@@ -312,10 +312,10 @@ discard block |
||
312 | 312 | </table> |
313 | 313 | <table class="main" cellspacing="0">'; |
314 | 314 | |
315 | - $class =''; |
|
316 | - foreach($output['files'] as $file) { |
|
315 | + $class = ''; |
|
316 | + foreach ($output['files'] as $file) { |
|
317 | 317 | echo '<tr><td class="'.$class.'"><b>'.$file['size'].'</b> '.$file['name'].'</td></tr>'; |
318 | - if($class == '') $class = 'alt'; |
|
318 | + if ($class == '') $class = 'alt'; |
|
319 | 319 | else $class = ''; |
320 | 320 | } |
321 | 321 |
@@ -47,15 +47,15 @@ discard block |
||
47 | 47 | 'speed' => 0 |
48 | 48 | )); |
49 | 49 | $logs = $this->console->getLogs(); |
50 | - foreach($logs as $log) { |
|
51 | - if($log['type'] == 'log') { |
|
50 | + foreach ($logs as $log) { |
|
51 | + if ($log['type'] == 'log') { |
|
52 | 52 | $message = array( |
53 | 53 | 'data' => print_r($log['data'], true), |
54 | 54 | 'type' => 'log' |
55 | 55 | ); |
56 | 56 | $console['totals']['log']++; |
57 | 57 | } |
58 | - elseif($log['type'] == 'memory') { |
|
58 | + elseif ($log['type'] == 'memory') { |
|
59 | 59 | $message = array( |
60 | 60 | 'name' => $log['name'], |
61 | 61 | 'data_type' => $log['data_type'], |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | ); |
65 | 65 | $console['totals']['memory']++; |
66 | 66 | } |
67 | - elseif($log['type'] == 'speed') { |
|
67 | + elseif ($log['type'] == 'speed') { |
|
68 | 68 | $message = array( |
69 | 69 | 'name' => $log['name'], |
70 | 70 | 'data' => $this->getReadableTime(($log['data'] - $this->startTime) * 1000), |
@@ -98,14 +98,14 @@ discard block |
||
98 | 98 | "largest" => 0, |
99 | 99 | ); |
100 | 100 | |
101 | - foreach($files as $key => $file) { |
|
101 | + foreach ($files as $key => $file) { |
|
102 | 102 | $size = filesize($file); |
103 | 103 | $fileList[] = array( |
104 | 104 | 'name' => $file, |
105 | 105 | 'size' => $this->getReadableFileSize($size) |
106 | 106 | ); |
107 | 107 | $fileTotals['size'] += $size; |
108 | - if($size > $fileTotals['largest']) $fileTotals['largest'] = $size; |
|
108 | + if ($size > $fileTotals['largest']) $fileTotals['largest'] = $size; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | $fileTotals['size'] = $this->getReadableFileSize($fileTotals['size']); |
@@ -135,9 +135,9 @@ discard block |
||
135 | 135 | $queryTotals['time'] = 0; |
136 | 136 | $queries = array(); |
137 | 137 | |
138 | - if($this->db != '') { |
|
138 | + if ($this->db != '') { |
|
139 | 139 | $queryTotals['count'] += $this->db->queryCount; |
140 | - foreach($this->db->queries as $key => $query) { |
|
140 | + foreach ($this->db->queries as $key => $query) { |
|
141 | 141 | $query = $this->attemptToExplainQuery($query); |
142 | 142 | $queryTotals['time'] += $query['time']; |
143 | 143 | $query['time'] = $this->getReadableTime($query['time']); |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | $sql = 'EXPLAIN '.$query['sql']; |
160 | 160 | $rs = $this->db->query($sql); |
161 | 161 | } |
162 | - catch(Exception $e) {} |
|
163 | - if($rs) { |
|
162 | + catch (Exception $e) {} |
|
163 | + if ($rs) { |
|
164 | 164 | $row = mysql_fetch_array($rs, MYSQL_ASSOC); |
165 | 165 | $query['explain'] = $row; |
166 | 166 | } |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | |
174 | 174 | public function gatherSpeedData() { |
175 | 175 | $speedTotals = array(); |
176 | - $speedTotals['total'] = $this->getReadableTime((microtime(true) - $this->startTime)*1000); |
|
176 | + $speedTotals['total'] = $this->getReadableTime((microtime(true) - $this->startTime) * 1000); |
|
177 | 177 | $speedTotals['allowed'] = ini_get("max_execution_time"); |
178 | 178 | $this->output['speedTotals'] = $speedTotals; |
179 | 179 | } |
@@ -202,15 +202,15 @@ discard block |
||
202 | 202 | $ret = $time; |
203 | 203 | $formatter = 0; |
204 | 204 | $formats = array('ms', 's', 'm'); |
205 | - if($time >= 1000 && $time < 60000) { |
|
205 | + if ($time >= 1000 && $time < 60000) { |
|
206 | 206 | $formatter = 1; |
207 | 207 | $ret = ($time / 1000); |
208 | 208 | } |
209 | - if($time >= 60000) { |
|
209 | + if ($time >= 60000) { |
|
210 | 210 | $formatter = 2; |
211 | 211 | $ret = ($time / 1000) / 60; |
212 | 212 | } |
213 | - $ret = number_format($ret,3,'.','') . ' ' . $formats[$formatter]; |
|
213 | + $ret = number_format($ret, 3, '.', '').' '.$formats[$formatter]; |
|
214 | 214 | return $ret; |
215 | 215 | } |
216 | 216 | |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | $this->gatherMemoryData(); |
227 | 227 | $this->gatherQueryData(); |
228 | 228 | $this->gatherSpeedData(); |
229 | - require_once __DIR__ . '/../display.php'; |
|
229 | + require_once __DIR__.'/../display.php'; |
|
230 | 230 | displayPqp($this->output); |
231 | 231 | } |
232 | 232 |