18 lines
327 B
PHP
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;
|
|
}
|
|
}
|