début génération documentation via apiGen
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -74,7 +74,8 @@ class Thelia extends Kernel
|
||||
* Initialize all plugins
|
||||
*
|
||||
*/
|
||||
public function loadConfiguration(){
|
||||
public function loadConfiguration()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user