Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431175
TimeType.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
TimeType.php
View Options
<?php
namespace
Doctrine\DBAL\Types
;
use
DateTime
;
use
DateTimeImmutable
;
use
DateTimeInterface
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\Deprecations\Deprecation
;
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
$column
,
AbstractPlatform
$platform
)
{
return
$platform
->
getTimeTypeDeclarationSQL
(
$column
);
}
/**
* {@inheritDoc}
*
* @param T $value
*
* @return (T is null ? null : string)
*
* @template T
*/
public
function
convertToDatabaseValue
(
$value
,
AbstractPlatform
$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
(
$value
,
AbstractPlatform
$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
(),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:09 (2 h, 14 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
bf/f3/6b91cecbb96acb686d0d609f42e1
Default Alt Text
TimeType.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment