for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class GeoCacheLogsRestoredEntity extends Oc\Repository\AbstractEntity
{
/** @var int */
public $id;
/** @var DateTime */
public $dateModified;
public $cacheId;
public $originalId;
public $restoredBy;
/**
* @return bool
*/
public function isNew()
return $this->id === null;
}