mise en place du templatind dans Thelia

This commit is contained in:
Manuel Raynaud
2012-10-18 17:54:49 +02:00
parent b603c6cf44
commit 60057f4cc9
8 changed files with 152 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
<?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);
}
?>