Newscoop\Service\Resource\ResourceId::getFullId PHP 메소드

getFullId() 공개 메소드

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