Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer 2016-01-04 16:15:25 +00:00
parent 6e4e8edd9d
commit 7cdd79a116
3 changed files with 10 additions and 10 deletions

View File

@ -50,7 +50,7 @@ abstract class View {
* *
* @var boolean * @var boolean
*/ */
protected $hasRendered = false; protected $hasRendered = FALSE;
/** /**
* Constructor * Constructor
@ -81,7 +81,7 @@ abstract class View {
*/ */
public function __toString() public function __toString()
{ {
$this->hasRendered = true; $this->hasRendered = TRUE;
return $this->getOutput(); return $this->getOutput();
} }
@ -126,7 +126,7 @@ abstract class View {
*/ */
public function send() public function send()
{ {
$this->hasRendered = true; $this->hasRendered = TRUE;
$this->output(); $this->output();
} }