Postgres::dropUser PHP Method

dropUser() public method

Removes a user
public dropUser ( $username )
$username The username of the user to drop
    function dropUser($username)
    {
        $this->fieldClean($username);
        $sql = "DROP USER \"{$username}\"";
        return $this->execute($sql);
    }
Postgres