Вход Регистрация
Файл: vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/TimeType.php
Строк: 54
<?php

namespace DoctrineDBALTypes;

use 
DateTime;
use 
DateTimeInterface;
use 
DoctrineDBALPlatformsAbstractPlatform;

/**
 * Type that maps an SQL TIME to a PHP DateTime object.
 */
class TimeType extends Type
{
    
/**
     * {@inheritdoc}
     */
    
public function getName()
    {
        return 
Types::TIME_MUTABLE;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getSQLDeclaration(array $columnAbstractPlatform $platform)
    {
        return 
$platform->getTimeTypeDeclarationSQL($column);
    }

    
/**
     * {@inheritdoc}
     */
    
public function convertToDatabaseValue($valueAbstractPlatform $platform)
    {
        if (
$value === null) {
            return 
$value;
        }

        if (
$value instanceof DateTimeInterface) {
            return 
$value->format($platform->getTimeFormatString());
        }

        throw 
ConversionException::conversionFailedInvalidType($value$this->getName(), ['null''DateTime']);
    }

    
/**
     * {@inheritdoc}
     */
    
public function convertToPHPValue($valueAbstractPlatform $platform)
    {
        if (
$value === null || $value instanceof DateTimeInterface) {
            return 
$value;
        }

        
$val DateTime::createFromFormat('!' $platform->getTimeFormatString(), $value);
        if (! 
$val) {
            throw 
ConversionException::conversionFailedFormat(
                
$value,
                
$this->getName(),
                
$platform->getTimeFormatString()
            );
        }

        return 
$val;
    }
}
Онлайн: 1
Реклама