* @copyright Copyright (c) 2013 - 2019, TechFuze. (http://techfuze.net) */ class ConfigGetEvent extends Event { /** * The name of the config that gets retrieved * * @var string */ public string $configName; /** * The directories the config might be found in * * @var array */ public array $configPaths; public function init(string $configName, array $configPaths) { $this->configName = $configName; $this->configPaths = $configPaths; } }