mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
9 lines
131 B
PHP
9 lines
131 B
PHP
<?php
|
|
|
|
interface ActionInterface
|
|
{
|
|
/**
|
|
* @return string|Response
|
|
*/
|
|
public function execute(Request $request);
|
|
}
|