Dumplie\Metadata\Schema\Field\DateTimeField::serialize PHP 메소드

serialize() 공개 메소드

public serialize ( $value ) : string
$value
리턴 string
    public function serialize($value) : string
    {
        if (!$value instanceof \DateTimeInterface) {
            throw InvalidValueException::valueDoesNotMatchType($this, $value);
        }
        return (string) $value->format($this->format);
    }