Add parent to mapper handle method.

This commit is contained in:
David Molineus
2015-01-20 16:38:23 +01:00
parent 2496994759
commit 762e6b5dbc
19 changed files with 77 additions and 42 deletions

View File

@@ -73,8 +73,9 @@ class MarkerMapper extends AbstractMapper
protected function build(
Definition $definition,
\Model $model,
DefinitionMapper $builder,
LatLngBounds $bounds = null
DefinitionMapper $mapper,
LatLngBounds $bounds = null,
Definition $parent = null
) {
if ($definition instanceof Marker) {
if ($model->addPopup) {
@@ -90,7 +91,7 @@ class MarkerMapper extends AbstractMapper
if ($iconModel) {
/** @var ImageIcon $icon */
$icon = $builder->handle($iconModel);
$icon = $mapper->handle($iconModel);
$definition->setIcon($icon);
}
}