Newscoop\Service\Resource\ResourceId::getFullId PHP Method

getFullId() public method

Provides the full id of the resource, this id will be full path of the requesting layer components separated by ':'.
public getFullId ( ) : string
return string The full id of the resource.
    public function getFullId()
    {
        if ($this->parent != NULL) {
            return $this->parent->getFullId() . ':' . $this->id;
        }
        return $this->id;
    }