#84 renamed "landingpage" view to "login" view #84 added some basic CREST API data mappers #84 added "isNPC" flag t Corporation table (WIP) #84 added CREST API settings to environment.ini
19 lines
250 B
PHP
19 lines
250 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus
|
|
* Date: 31.01.2016
|
|
* Time: 19:09
|
|
*/
|
|
|
|
namespace Data\Mapper;
|
|
|
|
|
|
class CrestCharacter extends AbstractIterator {
|
|
|
|
protected static $map = [
|
|
'id' => 'id',
|
|
'name' => 'name'
|
|
];
|
|
|
|
} |