Fabiang\Xmpp\EventListener\Stream\AbstractSessionEvent::getId PHP Method

getId() public method

Get generated id.
public getId ( ) : string
return string
    public function getId()
    {
        if (null === $this->id) {
            $this->id = XML::generateId();
        }
        return $this->id;
    }