1
0
mirror of https://github.com/chylex/Lightning-Tracker.git synced 2024-09-20 22:42:49 +02:00
Lightning-Tracker/src/Pages/IController.php
2020-08-03 03:11:12 +02:00

14 lines
185 B
PHP

<?php
declare(strict_types = 1);
namespace Pages;
use Routing\Request;
use Session\Session;
interface IController{
public function run(Request $req, Session $sess): IAction;
}
?>