Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/86-php-7.2-finalization'
Browse files Browse the repository at this point in the history
Close #86
  • Loading branch information
weierophinney committed Apr 9, 2018
2 parents 7425665 + d7b4a38 commit 2add3e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.9.3 - TBD
## 2.9.3 - 2018-04-09

### Added

Expand All @@ -18,8 +18,10 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- [#79](https://github.com/zendframework/zend-log/pull/79) provides fixes to
ensure the `FingersCrossed` and `MongoDB` writers work under PHP 7.2.
- [#79](https://github.com/zendframework/zend-log/pull/79) and
[#86](https://github.com/zendframework/zend-log/pull/86) provide fixes to
ensure the `FingersCrossed`, `Mongo`, and `MongoDB` writers work under PHP
7.2.

## 2.9.2 - 2017-05-17

Expand Down
3 changes: 2 additions & 1 deletion src/Writer/Mongo.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ public function __construct($mongo, $database = null, $collection = null, array
* This writer does not support formatting.
*
* @param string|FormatterInterface $formatter
* @param array|null $options (unused)
* @return WriterInterface
*/
public function setFormatter($formatter)
public function setFormatter($formatter, array $options = null)
{
return $this;
}
Expand Down

0 comments on commit 2add3e3

Please sign in to comment.