Session: How to Get Entity Last Modified

When a document is downloaded from the server it contains various metadata details, including the last modified date of the document.

Last modified date is stored within the session metadata and is available for each entity using the getLastModifiedFor method from the advanced session operations.

Syntax

public function getLastModifiedFor($instance): ?DateTimeInterface;
Parameter Description
$instance An instance of an entity for which the last modified date will be returned.
Return Type Description
?DateTimeInterface Returns the last modified date for an entity. Throws an exception if the entity is not tracked by the session.

Example

$employee = $session->load(Employee::class, "employees/1-A");
$lastModified = $session->advanced()->getLastModifiedFor($employee);