mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 14:37:11 +02:00
Merge branch '3.1.x'
* 3.1.x: [ticket/13643] Change the priority of kernel_terminate_subscriber to PHP_INT_MIN
This commit is contained in:
@ -35,7 +35,7 @@ class kernel_terminate_subscriber implements EventSubscriberInterface
|
|||||||
public static function getSubscribedEvents()
|
public static function getSubscribedEvents()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
KernelEvents::TERMINATE => 'on_kernel_terminate',
|
KernelEvents::TERMINATE => array('on_kernel_terminate', ~PHP_INT_MAX),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user