1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-05-28 23:48:18 +02:00
friendica-docker/src/classes/Controllers/Web/BaseController.php
2018-11-19 22:11:22 -05:00

9 lines
196 B
PHP

<?php
namespace Friendica\Directory\Controllers\Web;
abstract class BaseController
{
abstract function render(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args): array;
}