forked from Snck3rs/contao-leaflet-maps
25 lines
516 B
PHP
25 lines
516 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @package dev
|
||
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
||
|
|
* @copyright 2015 netzmacht creative David Molineus
|
||
|
|
* @license LGPL 3.0
|
||
|
|
* @filesource
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Netzmacht\Contao\Leaflet\Mapper\Layer;
|
||
|
|
|
||
|
|
use Netzmacht\Contao\Leaflet\Mapper\AbstractTypeMapper;
|
||
|
|
|
||
|
|
class AbstractLayerMapper extends AbstractTypeMapper
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Class of the model being build.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected static $modelClass = 'Netzmacht\Contao\Leaflet\Model\LayerModel';
|
||
|
|
}
|