diff --git a/CHANGELOG.md b/CHANGELOG.md index 180310356f..2034318eeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,19 @@ # Change Log All notable changes to this project will be documented in this file based on the [Keep a Changelog](http://keepachangelog.com/) Standard. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased](https://github.com/ruflin/Elastica/compare/3.2.1...HEAD) +## [Unreleased](https://github.com/ruflin/Elastica/compare/3.2.2...HEAD) + +### Backward Compatibility Fixes + +### Bugfixes + +### Added + +### Improvements + +## Deprecated + +## [3.2.2](https://github.com/ruflin/Elastica/compare/3.2.1...3.2.2) ### Backward Compatibility Fixes diff --git a/lib/Elastica/Query/Ids.php b/lib/Elastica/Query/Ids.php index 6b2c26ca68..7050f7be78 100644 --- a/lib/Elastica/Query/Ids.php +++ b/lib/Elastica/Query/Ids.php @@ -77,7 +77,7 @@ public function setType($type) return $this; } - $this->_params['type'] = (array)$type; + $this->_params['type'] = (array) $type; return $this; }