Skip to content

Commit

Permalink
Fix php-cs (missing spaces)
Browse files Browse the repository at this point in the history
  • Loading branch information
lazybobcat committed Jul 26, 2015
1 parent 1db3b0f commit 91dcfdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/View/ViewBlock.php
Expand Up @@ -111,7 +111,7 @@ public function end()
$mode = end($this->_active);
$active = key($this->_active);
$content = ob_get_clean();
if($mode === ViewBlock::OVERRIDE) {
if ($mode === ViewBlock::OVERRIDE) {
$this->_blocks[$active] = $content;
} else {
$this->concat($active, $content, $mode);
Expand All @@ -136,7 +136,7 @@ public function end()
*/
public function concat($name, $value = null, $mode = ViewBlock::APPEND)
{
if($value === null) {
if ($value === null) {
$this->start($name, $mode);
return;
}
Expand Down

0 comments on commit 91dcfdf

Please sign in to comment.