Yajra\Oci8\Eloquent\OracleEloquent::getQualifiedKeyName PHP Méthode

getQualifiedKeyName() public méthode

Get the table qualified key name.
public getQualifiedKeyName ( ) : string
Résultat string
    public function getQualifiedKeyName()
    {
        $pos = strpos($this->getTable(), '@');
        if ($pos === false) {
            return $this->getTable() . '.' . $this->getKeyName();
        } else {
            $table = substr($this->getTable(), 0, $pos);
            $dbLink = substr($this->getTable(), $pos);
            return $table . '.' . $this->getKeyName() . $dbLink;
        }
    }