This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Middleware/MiddlewareInterface.php

21 lines
307 B
PHP
Raw Permalink Normal View History

2016-07-30 13:48:09 +00:00
<?php
/**
* Holds the middleware interface.
* @package Sakura
*/
namespace Sakura\Middleware;
/**
* Middleware interface.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
2016-08-05 10:49:46 +00:00
interface MiddlewareInterface
2016-07-30 13:48:09 +00:00
{
2016-08-05 02:35:37 +00:00
/**
* Runs the middleware task.
*/
2016-07-30 13:48:09 +00:00
public function run();
}