Dingo\Blueprint\Resource::getIdentifier PHP 메소드

getIdentifier() 공개 메소드

Get the resource identifier.
public getIdentifier ( ) : string
리턴 string
    public function getIdentifier()
    {
        if (($annotation = $this->getAnnotationByType('Resource')) && isset($annotation->identifier)) {
            return $annotation->identifier;
        }
        return $this->identifier;
    }