Pantheon\Terminus\Collections\SSHKeys::deleteAll PHP Method

deleteAll() public method

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