Skip to content

Commit

Permalink
Fix missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgroenen committed May 6, 2016
1 parent 5733f27 commit 8809a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pinterest/Transport/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public function execute($method, $apiCall, array $parameters = array(), $headers
$response_data = $ch->execute();

if ($response_data === false && !$ch->hasErrors()) {
throw new CurlException("Error: Curl request failed")
throw new CurlException("Error: Curl request failed");
}
else if($ch->hasErrors()) {
throw new PinterestException('Error: execute() - cURL error: ' . $ch->getErrors(), $ch->getErrorNumber());
Expand Down

0 comments on commit 8809a9a

Please sign in to comment.