* @copyright Copyright (c) 2013 - 2018, TechFuze. (http://techfuze.net) */ class LayoutDisplayEvent extends Event { /** * @var string Contents of the layout */ public $contents; /** * @var string File. File that the contents derived from */ public $file; /** * @var string directory. Directory that the layout file resides in. */ public $directory; public function init(string $contents, string $file, string $directory) { $this->contents = $contents; $this->file = $file; $this->directory = $directory; } }