You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
355 B

  1. <?php
  2. namespace App;
  3. use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
  4. use Symfony\Component\HttpKernel\Kernel as BaseKernel;
  5. class Kernel extends BaseKernel
  6. {
  7. use MicroKernelTrait;
  8. public function boot(): void
  9. {
  10. parent::boot();
  11. date_default_timezone_set($this->getContainer()->getParameter('timezone'));
  12. }
  13. }