Newscoop\Entity\Country::getCode PHP Method

getCode() public method

Get code
public getCode ( ) : string
return string
    public function getCode()
    {
        return $this->code;
    }

Usage Example

 public function getCode()
 {
     if ($this->__isInitialized__ === false) {
         return $this->_identifier["code"];
     }
     $this->__load();
     return parent::getCode();
 }