- New CREST controller - Database restructuring - improved type-casting for some controller functions - New login process - Fixed some bugs during the setup process (/setup root) - Added CREST request caching by response headers
18 lines
246 B
PHP
18 lines
246 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus
|
|
* Date: 07.02.2016
|
|
* Time: 14:34
|
|
*/
|
|
|
|
namespace Data\Mapper;
|
|
|
|
|
|
class CrestSystem extends AbstractIterator {
|
|
|
|
protected static $map = [
|
|
'id' => 'id',
|
|
'name' => 'name'
|
|
];
|
|
} |