Slack\ApiClient::getTeam PHP Method

getTeam() public method

Gets information about the current Slack team logged in to.
public getTeam ( ) : React\Promise\PromiseInterface
return React\Promise\PromiseInterface A promise for the current Slack team.
    public function getTeam()
    {
        return $this->apiCall('team.info')->then(function (Payload $response) {
            return new Team($this, $response['team']);
        });
    }