Newscoop\Package\Package::getId PHP Метод

getId() публичный Метод

Get id
public getId ( ) : integer
Результат integer
    public function getId()
    {
        return $this->id;
    }

Usage Example

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