. */ namespace App\Entity\Contracts; interface LogWithNewDataInterface { /** * Checks if this entry has information about the new data. * @return bool */ public function hasNewDataInformation(): bool; /** * Returns the new data for this entry. */ public function getNewData(): array; /** * Sets the new data for this entry. * @return $this */ public function setNewData(array $new_data): self; }