Skip to content

Commit

Permalink
Merge pull request #112 from mariojrrc/master
Browse files Browse the repository at this point in the history
Created function getEvents for MailgunService.php
  • Loading branch information
bakura10 authored Apr 17, 2017
2 parents f35ebb3 + a080201 commit 8a17d92
Show file tree
Hide file tree
Showing 5 changed files with 191 additions and 134 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# CHANGELOG
## 2.1.1
- MailGun API endpoint `/logs` is deprecated. So, you should use the `getEvents` function instead of `getLogs` from `MailGunService.php`.
- Small fix in the ElasticMail Api return's when authentication fails.
- Small PHP syntax's fixes

## 2.1.0
- Added ZF3 support
-- which allow install zend-servicemanager both versions v2 or v3 by composer
Expand Down
2 changes: 1 addition & 1 deletion src/SlmMail/Service/AbstractMailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected function filterParameters(array $parameters)
}
}

return array_filter($parameters, function($value) {
return array_filter($parameters, function ($value) {
return $value !== null && $value !== '';
});
}
Expand Down
Loading

0 comments on commit 8a17d92

Please sign in to comment.