- improved file structure for _Model_ classes (`app/main/model/..`). Group by database name - improved database connection handling (fixed persistent DB connections)
19 lines
285 B
PHP
19 lines
285 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus 4D
|
|
* Date: 19.08.2017
|
|
* Time: 04:10
|
|
*/
|
|
|
|
namespace Model\Pathfinder;
|
|
|
|
|
|
interface LogModelInterface {
|
|
|
|
public function getLogObjectData(): array;
|
|
|
|
public function getMap(): MapModel;
|
|
|
|
public function getLogData(): array;
|
|
} |