1: <?php
2:
3: namespace Thelia\Controller;
4:
5: use Symfony\Component\HttpFoundation\Request;
6:
7: /**
8: *
9: * @author Manuel Raynaud <mraynaud@openstudio.fr>
10: */
11:
12: interface NullControllerInterface
13: {
14: /**
15: * Nothing to do
16: */
17: public function noAction(Request $request);
18:
19: }
20: