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

getId() public méthode

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