Bolt\Events\CronEvent::notify PHP Method

notify() private method

If we're passed an OutputInterface, we're called from Nut and can notify the end user.
private notify ( string $msg )
$msg string
    private function notify($msg)
    {
        if ($this->output !== null) {
            $this->output->writeln("<comment>    {$msg}</comment>");
        }
    }