/**
  * @return \Message\Cog\ValueObject\DateTimeImmutable | null
  */
 public function getUpdatedAt()
 {
     if ($updatedAt = $this->_authorship->updatedAt()) {
         return $updatedAt;
     }
     return $this->getCreatedAt();
 }
 /**
  * {@inheritDoc}
  */
 public function getLastModified()
 {
     return $this->authorship->updatedAt();
 }