blob: 30b8f168bbd311f0a0ad57a98c0df36239db41af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace Subscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class BootstrapSubscriber extends Base implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array(
'session.bootstrap' => array('setup', 0),
'api.bootstrap' => array('setup', 0),
);
}
public function setup()
{
$this->container['config']->setupTranslations();
$this->container['config']->setupTimezone();
}
}
|