Fix spacing between control structure and opening parenthesis

This commit is contained in:
Tautvidas Sipavičius
2016-06-29 18:54:01 +03:00
parent 0bfbe6dc79
commit 48f0c03425
16 changed files with 35 additions and 35 deletions

View File

@@ -41,7 +41,7 @@ class Renderer {
static function renderBlocks($blocks = array()) {
$html = '';
foreach ($blocks as $key => $block) {
foreach($blocks as $key => $block) {
$html .= static::renderBlock($block)."\n";
}
@@ -93,4 +93,4 @@ class Renderer {
}
return $html;
}
}
}