Skip to content

Commit

Permalink
Merge pull request #4 from infostreams/patch-4
Browse files Browse the repository at this point in the history
CalendarDeletedResponse accepts 2 arguments, not 3
  • Loading branch information
smarcet authored Mar 3, 2018
2 parents ed7ea51 + af1d177 commit 30c8a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Facade/CalDavClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public function deleteCalendar($calendar_url, $etag = null)

return new CalendarDeletedResponse
(
$this->server_url, (string)$http_response->getBody(), $http_response->getStatusCode()
(string)$http_response->getBody(), $http_response->getStatusCode()
);
}
}

0 comments on commit 30c8a32

Please sign in to comment.