Completed
Push — master ( f9b271...616eb6 )
by Jacob
02:11
created
src/Display.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function __invoke($output)
31 31
     {
32 32
 	
33
-$css = file_get_contents(__DIR__ . '/../css/pQp.css');
33
+$css = file_get_contents(__DIR__.'/../css/pQp.css');
34 34
 		
35 35
 echo <<<JAVASCRIPT
36 36
 <!-- JavaScript -->
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
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 {
@@ -178,29 +178,29 @@  discard block
 block discarded – undo
178 178
 		<table class="main" cellspacing="0">';
179 179
 		
180 180
 		$class = '';
181
-		foreach($this->console_data['messages'] as $log) {
181
+		foreach ($this->console_data['messages'] as $log) {
182 182
 			echo '<tr class="log-'.$log['type'].'">
183 183
 				<td class="type">'.$log['type'].'</td>
184 184
 				<td class="'.$class.'">';
185
-			if($log['type'] == 'log') {
185
+			if ($log['type'] == 'log') {
186 186
 				echo '<div><pre>'.$log['data'].'</pre></div>';
187 187
 			}
188
-			elseif($log['type'] == 'memory') {
188
+			elseif ($log['type'] == 'memory') {
189 189
 				echo '<div><pre>'.$log['data'].'</pre>';
190 190
           if (!empty($log['data_type'])) {
191 191
             echo '<em>'.$log['data_type'].'</em>: ';
192 192
           }
193 193
         echo $log['name'].' </div>';
194 194
 			}
195
-			elseif($log['type'] == 'speed') {
195
+			elseif ($log['type'] == 'speed') {
196 196
 				echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['name'].'</em></div>';
197 197
 			}
198
-			elseif($log['type'] == 'error') {
198
+			elseif ($log['type'] == 'error') {
199 199
 				echo '<div><em>Line '.$log['line'].'</em> : '.$log['data'].' <pre>'.$log['file'].'</pre></div>';
200 200
 			}
201 201
 		
202 202
 			echo '</td></tr>';
203
-			if($class == '') $class = 'alt';
203
+			if ($class == '') $class = 'alt';
204 204
 			else $class = '';
205 205
 		}
206 206
 			
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
 echo '<div id="pqp-speed" class="pqp-box">';
213 213
 
214
-if($this->console_data['count']['speed'] ==  0) {
214
+if ($this->console_data['count']['speed'] == 0) {
215 215
 	echo '<h3>This panel has no log items.</h3>';
216 216
 }
217 217
 else {
@@ -222,13 +222,13 @@  discard block
 block discarded – undo
222 222
 		<table class="main" cellspacing="0">';
223 223
 		
224 224
 		$class = '';
225
-		foreach($this->console_data['messages'] as $log) {
226
-			if($log['type'] == 'speed') {
225
+		foreach ($this->console_data['messages'] as $log) {
226
+			if ($log['type'] == 'speed') {
227 227
 				echo '<tr class="log-'.$log['type'].'">
228 228
 				<td class="'.$class.'">';
229 229
 				echo '<div><pre>'.$log['data'].'</pre> <em>'.$log['name'].'</em></div>';
230 230
 				echo '</td></tr>';
231
-				if($class == '') $class = 'alt';
231
+				if ($class == '') $class = 'alt';
232 232
 				else $class = '';
233 233
 			}
234 234
 		}
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 
241 241
 echo '<div id="pqp-queries" class="pqp-box">';
242 242
 
243
-if($output['queryTotals']['count'] ==  0) {
243
+if ($output['queryTotals']['count'] == 0) {
244 244
 	echo '<h3>This panel has no log items.</h3>';
245 245
 }
246 246
 else {
@@ -252,10 +252,10 @@  discard block
 block discarded – undo
252 252
 		<table class="main" cellspacing="0">';
253 253
 		
254 254
 		$class = '';
255
-		foreach($output['queries'] as $query) {
255
+		foreach ($output['queries'] as $query) {
256 256
 			echo '<tr>
257 257
 				<td class="'.$class.'">'.$query['sql'];
258
-			if($query['explain']) {
258
+			if ($query['explain']) {
259 259
 					echo '<em>
260 260
 						Possible keys: <b>'.$query['explain']['possible_keys'].'</b> &middot; 
261 261
 						Key Used: <b>'.$query['explain']['key'].'</b> &middot; 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 					</em>';
266 266
 			}
267 267
 			echo '</td></tr>';
268
-			if($class == '') $class = 'alt';
268
+			if ($class == '') $class = 'alt';
269 269
 			else $class = '';
270 270
 		}
271 271
 			
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 
277 277
 echo '<div id="pqp-memory" class="pqp-box">';
278 278
 
279
-if($this->console_data['count']['memory'] ==  0) {
279
+if ($this->console_data['count']['memory'] == 0) {
280 280
 	echo '<h3>This panel has no log items.</h3>';
281 281
 }
282 282
 else {
@@ -287,8 +287,8 @@  discard block
 block discarded – undo
287 287
 		<table class="main" cellspacing="0">';
288 288
 		
289 289
 		$class = '';
290
-		foreach($this->console_data['messages'] as $log) {
291
-			if($log['type'] == 'memory') {
290
+		foreach ($this->console_data['messages'] as $log) {
291
+			if ($log['type'] == 'memory') {
292 292
 				echo '<tr class="log-'.$log['type'].'">';
293 293
 				echo '<td class="'.$class.'"><b>'.$log['data'].'</b>';
294 294
           if ($log['data_type']) {
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
           }
297 297
         echo $log['name'].'</td>';
298 298
 				echo '</tr>';
299
-				if($class == '') $class = 'alt';
299
+				if ($class == '') $class = 'alt';
300 300
 				else $class = '';
301 301
 			}
302 302
 		}
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
 
309 309
 echo '<div id="pqp-files" class="pqp-box">';
310 310
 
311
-if($output['fileTotals']['count'] ==  0) {
311
+if ($output['fileTotals']['count'] == 0) {
312 312
 	echo '<h3>This panel has no log items.</h3>';
313 313
 }
314 314
 else {
@@ -319,10 +319,10 @@  discard block
 block discarded – undo
319 319
 		 </table>
320 320
 		<table class="main" cellspacing="0">';
321 321
 		
322
-		$class ='';
323
-		foreach($output['files'] as $file) {
322
+		$class = '';
323
+		foreach ($output['files'] as $file) {
324 324
 			echo '<tr><td class="'.$class.'"><b>'.$file['size'].'</b> '.$file['name'].'</td></tr>';
325
-			if($class == '') $class = 'alt';
325
+			if ($class == '') $class = 'alt';
326 326
 			else $class = '';
327 327
 		}
328 328
 			
Please login to merge, or discard this patch.
src/PhpQuickProfiler.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         );
54 54
 
55 55
         foreach ($this->console->getLogs() as $log) {
56
-            switch($log['type']) {
56
+            switch ($log['type']) {
57 57
                 case 'log':
58 58
                     $message = array(
59 59
                         'data' => print_r($log['data'], true),
@@ -116,14 +116,14 @@  discard block
 block discarded – undo
116 116
       "largest" => 0,
117 117
     );
118 118
 
119
-    foreach($files as $file) {
119
+    foreach ($files as $file) {
120 120
       $size = filesize($file);
121 121
       $fileList[] = array(
122 122
           'name' => $file,
123 123
           'size' => $this->getReadableFileSize($size)
124 124
         );
125 125
       $fileTotals['size'] += $size;
126
-      if($size > $fileTotals['largest']) $fileTotals['largest'] = $size;
126
+      if ($size > $fileTotals['largest']) $fileTotals['largest'] = $size;
127 127
     }
128 128
     
129 129
     $fileTotals['size'] = $this->getReadableFileSize($fileTotals['size']);
@@ -153,9 +153,9 @@  discard block
 block discarded – undo
153 153
     $queryTotals['time'] = 0;
154 154
     $queries = array();
155 155
     
156
-    if($this->db != '') {
156
+    if ($this->db != '') {
157 157
       $queryTotals['count'] += $this->db->queryCount;
158
-      foreach($this->db->queries as $query) {
158
+      foreach ($this->db->queries as $query) {
159 159
         $query = $this->attemptToExplainQuery($query);
160 160
         $queryTotals['time'] += $query['time'];
161 161
         $query['time'] = $this->getReadableTime($query['time']);
@@ -177,8 +177,8 @@  discard block
 block discarded – undo
177 177
       $sql = 'EXPLAIN '.$query['sql'];
178 178
       $rs = $this->db->query($sql);
179 179
     }
180
-    catch(Exception $e) {}
181
-    if($rs) {
180
+    catch (Exception $e) {}
181
+    if ($rs) {
182 182
       $row = mysql_fetch_array($rs, MYSQL_ASSOC);
183 183
       $query['explain'] = $row;
184 184
     }
Please login to merge, or discard this patch.