diff --git a/system/src/Grav/Common/Grav.php b/system/src/Grav/Common/Grav.php index c68a74da6..eb152277e 100644 --- a/system/src/Grav/Common/Grav.php +++ b/system/src/Grav/Common/Grav.php @@ -18,8 +18,14 @@ class Grav extends Container { + /** + * @var string Processed output for the page. + */ + public $output; - /** @var static The singleton instance */ + /** + * @var static The singleton instance + */ protected static $instance; /** @@ -64,7 +70,9 @@ class Grav extends Container 'renderProcessor' => 'Grav\Common\Processors\RenderProcessor', ]; - /** @var array All processors that are processed in $this->process() */ + /** + * @var array All processors that are processed in $this->process() + */ protected $processors = [ 'siteSetupProcessor', 'configurationProcessor',