Pantheon\Terminus\Collections\SSHKeys::deleteAll PHP Méthode

deleteAll() public méthode

Deletes all SSH keys from account
public deleteAll ( ) : array
Résultat array
    public function deleteAll()
    {
        $response = $this->request->request('users/' . $this->getUser()->id . '/keys', ['method' => 'delete']);
        return (array) $response['data'];
    }