mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2025-01-03 04:22:24 +03:00
Allow the notification method to return a null time zone value (like the library does)(#1597)
This commit is contained in:
parent
855a7e841a
commit
d58d9f7434
1 changed files with 2 additions and 2 deletions
|
@ -148,9 +148,9 @@ if (!function_exists('format_timezone')) {
|
|||
*
|
||||
* @param string $value
|
||||
*
|
||||
* @return string
|
||||
* @return string|null
|
||||
*/
|
||||
function format_timezone(string $value): string
|
||||
function format_timezone(string $value): ?string
|
||||
{
|
||||
/** @var EA_Controller $CI */
|
||||
$CI = &get_instance();
|
||||
|
|
Loading…
Reference in a new issue