Skip to content

Commit

Permalink
Fixed small syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
linux-jedi authored Jul 7, 2016
1 parent 00bfb05 commit 20376b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ExchangeClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ public function mark_message_as_read($messages) {
$this->setup();

if(!is_array($messages)) {
$messages = array($messages)
$messages = array($messages);
}

$request = new stdClass();
Expand Down Expand Up @@ -585,7 +585,7 @@ public function mark_message_as_read($messages) {
}
else {
$this->lastError = $response->ResponseMessages->UpdateItemResponseMessage->ResponseCode;
return false
return false;
}
}

Expand Down

0 comments on commit 20376b7

Please sign in to comment.