Crunz\EventRunner::__construct PHP Method

__construct() public method

Instantiate the event runner
public __construct ( )
    public function __construct()
    {
        $this->configurable();
        // Create an insance of the Logger
        $this->logger = LoggerFactory::makeOne(['info' => $this->config('output_log_file'), 'error' => $this->config('errors_log_file')]);
        // Initializing the invoker
        $this->invoker = new Invoker();
        // Initializing the invoker
        $this->mailer = new Mailer();
    }