* @copyright Copyright (c) 2013 - 2019, TechFuze. (http://techfuze.net) */ class HelperLoadEvent extends Event { /** * The name of the helper that gets loaded * * @var string */ public string $helperName; /** * The directory of the helper that gets loaded * * @var array */ public array $helperPaths; public function init(string $helperName, array $helperPaths) { $this->helperName = $helperName; $this->helperPaths = $helperPaths; } }