mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-12-04 05:48:36 +01:00
Switch to PSR-4.
This commit is contained in:
29
src/Mapper/Style/AbstractStyleMapper.php
Normal file
29
src/Mapper/Style/AbstractStyleMapper.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package contao-leaflet-maps
|
||||
* @author David Molineus <david.molineus@netzmacht.de>
|
||||
* @copyright 2014-2016 netzmacht David Molineus
|
||||
* @license LGPL 3.0
|
||||
* @filesource
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Netzmacht\Contao\Leaflet\Mapper\Style;
|
||||
|
||||
use Netzmacht\Contao\Leaflet\Mapper\AbstractTypeMapper;
|
||||
|
||||
/**
|
||||
* Class AbstractStyleMapper is the base mapper for the style model.
|
||||
*
|
||||
* @package Netzmacht\Contao\Leaflet\Mapper\Style
|
||||
*/
|
||||
abstract class AbstractStyleMapper extends AbstractTypeMapper
|
||||
{
|
||||
/**
|
||||
* Class of the model being build.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected static $modelClass = 'Netzmacht\Contao\Leaflet\Model\StyleModel';
|
||||
}
|
||||
Reference in New Issue
Block a user