for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SJBR\StaticInfoTables\Domain\Model;
/**
* Territory
*/
class Territory extends AbstractEntity
{
* Chinese name of the territory
*
* @var string
protected $nameZh = '';
* Sets the Chinese name of the territory
public function setNameZh(string $nameZh):void
$this->nameZh = $nameZh;
}
* Returns the Chinese name of the territory
public function getNameZh():string
return $this->nameZh;