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' into develop
Browse files Browse the repository at this point in the history
Forward port #86

Conflicts:
	CHANGELOG.md
  • Loading branch information
weierophinney committed Apr 9, 2018
2 parents 6fe9d82 + d7b4a38 commit fe91d51
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 @@ -20,7 +20,7 @@ All notable changes to this project will be documented in this file, in reverse

- Nothing.

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

### Added

Expand All @@ -36,8 +36,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 fe91d51

Please sign in to comment.