Bravo3\Orm\KeySchemes\StandardKeyScheme::getEntityRefKey PHP Method

getEntityRefKey() public method

Return the key for an entity ref table
public getEntityRefKey ( string $table_name, string $id ) : string
$table_name string Table name
$id string Entity ID
return string
    public function getEntityRefKey($table_name, $id)
    {
        // ref:article:54624
        return static::REF_NAMESPACE . $this->delimiter . $table_name . $this->delimiter . $id;
    }