for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oc\Country;
use Oc\Repository\AbstractEntity;
/**
* Class CountryEntity
*
* @package Oc\Country
*/
class CountryEntity extends AbstractEntity
{
* @var string
public $short;
public $name;
public $de;
public $en;
* @var int
public $translationId;
* @var bool
public $listDefaultDe;
public $listDefaultEn;
public $sortDe;
public $sortEn;
* Checks if the entity is new.
* @return bool
public function isNew()
return $this->short === null;
}