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

@@ -4,7 +4,7 @@ namespace Thelia\Routing\Matcher;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
use Thelia\Controller\NullController;
use Thelia\Controller\NullControllerInterface;
/**
* Default matcher when no action is needed and there is no result for urlmatcher
@@ -15,7 +15,7 @@ class DefaultMatcher implements RequestMatcherInterface{
protected $controller;
public function __construct(NullController $controller) {
public function __construct(NullControllerInterface $controller) {
$this->controller = $controller;
}