début génération documentation via apiGen

This commit is contained in:
Manuel Raynaud
2013-02-08 17:51:16 +01:00
parent b952888b14
commit 1a1ddbefbd
1421 changed files with 1732858 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
* @author Manuel Raynaud <mraynaud@openstudio.fr>
*/
class BaseAction
abstract class BaseAction
{
/**
*
@@ -43,7 +43,8 @@ class BaseAction
*
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
*/
public function __construct(EventDispatcherInterface $dispatcher) {
public function __construct(EventDispatcherInterface $dispatcher)
{
$this->dispatcher = $dispatcher;
}

View File

@@ -74,7 +74,8 @@ class Thelia extends Kernel
* Initialize all plugins
*
*/
public function loadConfiguration(){
public function loadConfiguration()
{
}

View File

@@ -73,7 +73,6 @@ class ActionMatcher implements RequestMatcherInterface
break;
default :
$event = new ActionEvent($request, $action);
$event->setDispatcher($this->dispatcher);
$this->dispatcher->dispatch(TheliaEvents::ACTION, $event);
if ($event->hasController()) {
$controller = $event->getController();