SimpleSAML\Database::applyPrefix PHP Метод

applyPrefix() публичный Метод

This function simply applies the table prefix to a supplied table name.
public applyPrefix ( string $table ) : string
$table string Table to apply prefix to, if configured
Результат string Table with configured prefix
    public function applyPrefix($table)
    {
        return $this->tablePrefix . $table;
    }