public function Lock::getUpdated in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/TempStore/Lock.php \Drupal\Core\TempStore\Lock::getUpdated()
- 9 core/lib/Drupal/Core/TempStore/Lock.php \Drupal\Core\TempStore\Lock::getUpdated()
Gets the timestamp of the last update to the lock.
Return value
int The updated timestamp.
File
- core/
lib/ Drupal/ Core/ TempStore/ Lock.php, line 53
Class
- Lock
- Provides a value object representing the lock from a TempStore.
Namespace
Drupal\Core\TempStoreCode
public function getUpdated() {
return $this->updated;
}