déclaration dans le bundle de la mécanique des controlleurs

un controlleur qui contient une collection de Matcher
This commit is contained in:
Manuel Raynaud
2012-10-11 16:05:04 +02:00
parent 69ac78c790
commit b892264882
5 changed files with 152 additions and 32 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace Thelia\Controller;
use Thelia\Controller\NullController;
class DefaultController extends NullController{
}
?>

View File

@@ -0,0 +1,15 @@
<?php
namespace Thelia\Controller;
abstract class NullController {
/**
* Nothing to do
*/
public function noAction(){
}
}
?>