Jackalope\Transport\TransportInterface::setAutoLastModified PHP Method

setAutoLastModified() public method

If this is true, the transport has to make sure that on any node change that does not already include a change to the lastModified property, the jcr:lastModified property on nodes with the mixin is set to the current DateTime, and jcr:lastModifiedBy to the user id according to the credentials. Note: On read only stores, this is never used.
public setAutoLastModified ( boolean $autoLastModified )
$autoLastModified boolean
    public function setAutoLastModified($autoLastModified);

Usage Example

 /**
  * {@inheritDoc}
  */
 public function setAutoLastModified($autoLastModified)
 {
     return $this->transport->setAutoLastModified($autoLastModified);
 }