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