Files
sterivein/documentation/api/files/Controller/NullControllerInterface.php.txt
2013-08-08 13:26:49 +02:00

21 lines
272 B
Plaintext

<?php
namespace Thelia\Controller;
use Symfony\Component\HttpFoundation\Request;
/**
*
* @author Manuel Raynaud <mraynaud@openstudio.fr>
*/
interface NullControllerInterface
{
/**
* Nothing to do
*/
public function noAction(Request $request);
}