aboutsummaryrefslogtreecommitdiff
path: root/lib/ActionInterface.php
blob: c0ddcf9f44be59698021ac7a54fd5c4f1b55fb7e (plain) (blame)
1
2
3
4
5
6
7
8
9
<?php

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