Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4142146
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
Wed, Aug 19, 16:14 (4 w, 1 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5c/75/0eaa0f1f4e12ab5a3ac68211728c
Default Alt Text
TimeType.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment