yii\authclient\widgets\AuthChoice::getClients PHP Method

getClients() public method

public getClients ( ) : yii\authclient\ClientInterface[]
return yii\authclient\ClientInterface[] auth providers
    public function getClients()
    {
        if ($this->_clients === null) {
            $this->_clients = $this->defaultClients();
        }
        return $this->_clients;
    }