Completed
Push — master ( 1c812d...33968d )
by Jacob
02:11
created
src/Display.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             )
48 48
         );
49 49
         foreach ($console->getLogs() as $log) {
50
-            switch($log['type']) {
50
+            switch ($log['type']) {
51 51
                 case 'log':
52 52
                     $message = array(
53 53
                         'message' => print_r($log['data'], true),
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
                     break;
58 58
                 case 'memory':
59 59
                     $message = array(
60
-                        'message' => (!empty($log['data_type']) ? "{$log['data_type']}: " : '') . $log['name'],
60
+                        'message' => (!empty($log['data_type']) ? "{$log['data_type']}: " : '').$log['name'],
61 61
                         'data'    => self::getReadableMemory($log['data']),
62 62
                         'type'    => 'memory'
63 63
                     );
@@ -232,9 +232,9 @@  discard block
 block discarded – undo
232 232
         $console = $output['console'];
233 233
 
234 234
         // todo is this really the best way to load these?
235
-        $styles = file_get_contents(__DIR__ . "./../{$this->options['style_path']}");
236
-        $script = file_get_contents(__DIR__ . "./../{$this->options['script_path']}");
235
+        $styles = file_get_contents(__DIR__."./../{$this->options['style_path']}");
236
+        $script = file_get_contents(__DIR__."./../{$this->options['script_path']}");
237 237
 
238
-        require_once __DIR__ .'/../asset/display.tpl.php';
238
+        require_once __DIR__.'/../asset/display.tpl.php';
239 239
     }
240 240
 }	
Please login to merge, or discard this patch.