Skip to content

Commit 3d5e5dd

Browse files
committed
doDelete should return bool
1 parent 0cde149 commit 3d5e5dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ConstantContact/Base.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ public function next() : array
4040
return $this->client->next();
4141
}
4242

43-
protected function doDelete(array $parameters) : array
43+
protected function doDelete(array $parameters) : bool
4444
{
4545
$url = $this->getUrl($parameters);
4646

47-
return $this->client->delete($url, $parameters);
47+
return $this->client->delete($url);
4848
}
4949

5050
protected function doGet(array $parameters) : array

0 commit comments

Comments
 (0)