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

namespace DoctrineDBALTypes;

use 
DateTime;
use 
DateTimeImmutable;
use 
DateTimeInterface;
use 
DoctrineDBALPlatformsAbstractPlatform;
use 
DoctrineDeprecationsDeprecation;

use function 
get_class;

/**
 * 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}
     *
     * @param T $value
     *
     * @return (T is null ? null : string)
     *
     * @template T
     */
    
public function convertToDatabaseValue($valueAbstractPlatform $platform)
    {
        if (
$value === null) {
            return 
$value;
        }

        if (
$value instanceof DateTimeImmutable) {
            
Deprecation::triggerIfCalledFromOutside(
                
'doctrine/dbal',
                
'https://github.com/doctrine/dbal/pull/6017',
                
'Passing an instance of %s is deprecated, use %s::%s() instead.',
                
get_class($value),
                
TimeImmutableType::class,
                
__FUNCTION__,
            );
        }

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

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

    
/**
     * {@inheritDoc}
     *
     * @param T $value
     *
     * @return (T is null ? null : DateTimeInterface)
     *
     * @template T
     */
    
public function convertToPHPValue($valueAbstractPlatform $platform)
    {
        if (
$value instanceof DateTimeImmutable) {
            
Deprecation::triggerIfCalledFromOutside(
                
'doctrine/dbal',
                
'https://github.com/doctrine/dbal/pull/6017',
                
'Passing an instance of %s is deprecated, use %s::%s() instead.',
                
get_class($value),
                
TimeImmutableType::class,
                
__FUNCTION__,
            );
        }

        if (
$value === null || $value instanceof DateTimeInterface) {
            return 
$value;
        }

        
$dateTime DateTime::createFromFormat('!' $platform->getTimeFormatString(), $value);
        if (
$dateTime !== false) {
            return 
$dateTime;
        }

        throw 
ConversionException::conversionFailedFormat(
            
$value,
            
$this->getName(),
            
$platform->getTimeFormatString(),
        );
    }
}
Онлайн: 0
Реклама