Files
sterivein/core/lib/Thelia/Controller/NullControllerInterface.php
2012-10-18 17:54:49 +02:00

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