You are here

public function Schedule::getScheduled in Business Rules 2.x

Same name and namespace in other branches
  1. 8 src/Entity/Schedule.php \Drupal\business_rules\Entity\Schedule::getScheduled()

Gets the Schedule scheduled timestamp.

Return value

int Creation timestamp that it's scheduled.

Overrides ScheduleInterface::getScheduled

File

src/Entity/Schedule.php, line 112

Class

Schedule
Defines the Schedule entity.

Namespace

Drupal\business_rules\Entity

Code

public function getScheduled() {
  return $this
    ->get('scheduled')->value;
}