* @copyright Copyright (c) 2013 - 2019, TechFuze. (http://techfuze.net) */ class HaltExecutionEvent extends Event { /** * @var array Log */ public array $log; public function init(array $log) { $this->log = $log; } public function getLog(): array { return $this->log; } }