2025-05-16 12:54:52 -04:00
|
|
|
<?php
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
|
|
|
return [
|
|
|
|
DateTimeZone::class => function (ContainerInterface $container) {
|
|
|
|
return new DateTimeZone($container->get('TZ') ?? 'America/Santiago');
|
|
|
|
},
|
2025-06-03 12:58:57 -04:00
|
|
|
'loopFrequency' => 60
|
2025-05-16 12:54:52 -04:00
|
|
|
];
|