Files
monica/app/Traits/DAVFormat.php
T
2021-09-12 09:13:02 +02:00

18 lines
337 B
PHP

<?php
namespace App\Traits;
trait DAVFormat
{
/**
* Formats and returns a string for DAV Card/Cal.
*
* @param null|string $value
* @return null|string
*/
private function formatValue(?string $value): ?string
{
return ! empty($value) ? str_replace('\;', ';', trim($value)) : null;
}
}