12 lines
200 B
PHP
12 lines
200 B
PHP
<?php
|
|
|
|
namespace addons\webman\traits;
|
|
|
|
|
|
trait HasDateTimeFormatter
|
|
{
|
|
protected function serializeDate(\DateTimeInterface $date)
|
|
{
|
|
return $date->format($this->getDateFormat());
|
|
}
|
|
} |