Habari\CronJob::insert PHP Method

insert() public method

Saves a new cron job to the crontab table.
See also: QueryRecord::insertRecord()
public insert ( ) : CronJob
return CronJob The newly inserted cron job, or false if failed.
    public function insert()
    {
        return parent::insertRecord(DB::table('crontab'));
    }