Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class EventServiceProvider extends IlluminateEventServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * The subscriber classes to register. |
||
13 | * |
||
14 | * @var array |
||
15 | */ |
||
16 | protected $subscribe = [ |
||
17 | LocaleChangedEventSubscriber::class, |
||
18 | ]; |
||
19 | |||
20 | /** |
||
21 | * Register any other events for your application. |
||
22 | */ |
||
23 | public function boot() |
||
24 | { |
||
25 | parent::boot(); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Register any application services. |
||
30 | */ |
||
31 | public function register() |
||
34 | } |
||
35 | } |
||
36 |