@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | list($endUsec, $endSec) = explode(" ", microtime()); |
231 | 231 | $diffSec = intval($endSec) - intval($startSec); |
232 | 232 | $diffUsec = floatval($endUsec) - floatval($startUsec); |
233 | - $this->logDebug("Compiled tree in " . floatval($diffSec) + $diffUsec); |
|
233 | + $this->logDebug("Compiled tree in ".floatval($diffSec) + $diffUsec); |
|
234 | 234 | } |
235 | 235 | $this->compiled = true; |
236 | 236 | } |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | */ |
281 | 281 | private function addLeftRight(array $items, $left = 1) |
282 | 282 | { |
283 | - $right = $left+1; |
|
283 | + $right = $left + 1; |
|
284 | 284 | foreach ($items as $item) { |
285 | 285 | $item->setLeft($left); |
286 | 286 | if ($item->hasChildren()) { |
@@ -316,6 +316,6 @@ discard block |
||
316 | 316 | */ |
317 | 317 | private function logDebug($string) |
318 | 318 | { |
319 | - $this->debugData .= $string . '<br/>'; |
|
319 | + $this->debugData .= $string.'<br/>'; |
|
320 | 320 | } |
321 | 321 | } |