1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-03-31 13:55:07 +03:00
rss-bridge/lib/ActionInterface.php

9 lines
131 B
PHP

<?php
interface ActionInterface
{
/**
* @return string|Response
*/
public function execute(Request $request);
}