You are here

public function EntitySubqueue::getCreatedTime in Entityqueue 8

Gets the subqueue creation timestamp.

Return value

int Creation timestamp of the subqueue.

Overrides EntitySubqueueInterface::getCreatedTime

File

src/Entity/EntitySubqueue.php, line 164

Class

EntitySubqueue
Defines the EntitySubqueue entity class.

Namespace

Drupal\entityqueue\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}