for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class CountriesOptionsEntity extends Oc\Repository\AbstractEntity
{
/** @var string */
public $country;
/** @var int */
public $display;
/** @var float */
public $gmLat;
public $gmLon;
public $gmZoom;
public $nodeId;
/**
* @return bool
*/
public function isNew()
return $this->country === null;
}