You are here

public function JobSchedule::getCrontab in Job Scheduler 8.3

Returns the job crontab.

Return value

string The job crontab.

File

src/Entity/JobSchedule.php, line 144

Class

JobSchedule
Defines the job schedule entity.

Namespace

Drupal\job_scheduler\Entity

Code

public function getCrontab() {
  return $this
    ->get('crontab')->value;
}