Files
monica/app/Traits/DAVFormat.php
T
2019-01-23 14:39:44 +01:00

18 lines
327 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($value)
{
return ! empty($value) ? str_replace('\;', ';', trim((string) $value)) : null;
}
}