You are here

public function MaestroQueue::getChangedTime in Maestro 3.x

Same name and namespace in other branches
  1. 8.2 src/Entity/MaestroQueue.php \Drupal\maestro\Entity\MaestroQueue::getChangedTime()

Gets the timestamp of the last entity change for the current translation.

Return value

int The timestamp of the last entity save operation.

Overrides EntityChangedTrait::getChangedTime

File

src/Entity/MaestroQueue.php, line 85

Class

MaestroQueue
Defines the MaestroQueue entity.

Namespace

Drupal\maestro\Entity

Code

public function getChangedTime() {
  return $this
    ->get('changed')->value;
}