Simplify getting of class name.

This commit is contained in:
David Molineus
2015-01-22 11:59:19 +01:00
parent 25d4dace71
commit b65bcbff9f
5 changed files with 5 additions and 40 deletions

View File

@@ -30,13 +30,6 @@ use Netzmacht\LeafletPHP\Definition\UI\Marker;
*/
class MarkersLayerMapper extends AbstractLayerMapper implements GeoJsonMapper
{
/**
* Class of the definition being created.
*
* @var string
*/
protected static $definitionClass = 'Netzmacht\LeafletPHP\Definition\Group\GeoJson';
/**
* Layer type.
*
@@ -53,7 +46,7 @@ class MarkersLayerMapper extends AbstractLayerMapper implements GeoJsonMapper
return 'Netzmacht\LeafletPHP\Plugins\Omnivore\GeoJson';
}
return parent::getClassName($model, $mapper, $bounds);
return 'Netzmacht\LeafletPHP\Definition\Group\GeoJson';
}
/**