* @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 array directories. Directories that the layout file might resides in. */ public $directories; public function init(string $contents, string $file, array $directories) { $this->contents = $contents; $this->file = $file; $this->directories = $directories; } }