Remove unused parameter from ModelToElasticaAutoTransformer.php

This commit is contained in:
Gábor Tóth 2013-07-04 18:47:58 +02:00
commit 9beb277745

View file

@ -76,7 +76,7 @@ class ModelToElasticaAutoTransformer implements ModelToElasticaTransformerInterf
/* $value is a nested document or object. Transform $value into
* an array of documents, respective the mapped properties.
*/
$document->add($key, $this->transformNested($value, $mapping['properties'], $document));
$document->add($key, $this->transformNested($value, $mapping['properties']));
continue;
}