Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
3 changed files with 10 additions and 10 deletions
Showing only changes of commit 6455541210 - Show all commits

View File

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