Dingo\Blueprint\Resource::getIdentifier PHP Méthode

getIdentifier() public méthode

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