11 lines
191 B
PHP
11 lines
191 B
PHP
<?php namespace MapGuesser\Interfaces\View;
|
|
|
|
interface IView
|
|
{
|
|
public function &getData(): array;
|
|
|
|
public function &render(): string;
|
|
|
|
public function getContentType(): string;
|
|
}
|