-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBootstrap.php
49 lines (40 loc) · 1.12 KB
/
Bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace Drufony\Bridge;
use Drufony\Bridge\Event\BootstrapEvent;
use Drufony\Bridge\Event\GetCallableForPhase;
use Drupal\Core\BootstrapInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* Class Bootstrap.
*/
class Bootstrap implements BootstrapInterface
{
/**
* @var EventDispatcherInterface
*/
protected $dispatcher;
/**
* @param EventDispatcherInterface $dispatcher
*/
public function __construct(EventDispatcherInterface $dispatcher)
{
$this->dispatcher = $dispatcher;
}
/**
* @param null $phase
*
* @return mixed|void
*/
public function __invoke($phase)
{
$event = new GetCallableForPhase($phase);
$eventName = BootstrapEvents::getEventNameForPhase($phase);
$this->dispatcher->dispatch($eventName, $event);
if ($event->hasCallable()) {
call_user_func($event->getCallable());
}
$event = new BootstrapEvent($phase);
$eventName = BootstrapEvents::filterEventNameForPhase($phase);
$this->dispatcher->dispatch($eventName, $event);
}
}