Newscoop\Entity\Notification::getId PHP Méthode

getId() public méthode

Get id
public getId ( ) : integer
Résultat 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();
 }