Files
sterivein/core/lib/Thelia/Controller/NullControllerInterface.php
2012-11-03 09:39:40 +01:00

20 lines
271 B
PHP

<?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);
}