for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oc\GeoCache\Persistence\GeoCacheLog;
use DateTime;
use Oc\Repository\AbstractEntity;
class GeoCacheLogEntity extends AbstractEntity
{
/**
* @var int
*/
public $id;
* @var string
public $uuid;
public $node;
* @var DateTime
public $dateCreated;
public $entryLastModified;
public $lastModified;
public $okapiSyncbase;
public $logLastModified;
public $cacheId;
public $userId;
public $type;
* @var bool
public $ocTeamComment;
public $date;
public $orderDate;
public $needsMaintenance;
public $listingOutdated;
public $text;
public $textHtml;
public $textHtmledit;
public $ownerNotified;
public $picture;
* Checks if the entity is new.
*
* @return bool
public function isNew()
return $this->id === null;
}