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