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

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