for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class FieldNoteEntity extends Oc\Repository\AbstractEntity
{
/** @var int */
public $id;
public $userId;
public $geocacheId;
/** @var smallint */
public $type;
/** @var DateTime */
public $date;
/** @var string */
public $text;
/**
* @return bool
*/
public function isNew()
return $this->id === null;
}