lithium\data\source\http\adapter\CouchDb::name PHP Method

name() public method

CouchDb does not need identifiers quoted, so this method simply returns the identifier.
public name ( string $name ) : string
$name string The identifier to quote.
return string The quoted identifier.
    public function name($name)
    {
        return $name;
    }