D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
nesbot
/
carbon
/
src
/
Carbon
/
Doctrine
/
Filename :
DateTimeImmutableType.php
back
Copy
<?php /** * Thanks to https://github.com/flaushi for his suggestion: * https://github.com/doctrine/dbal/issues/2873#issuecomment-534956358 */ namespace Carbon\Doctrine; use Carbon\CarbonImmutable; use Doctrine\DBAL\Types\VarDateTimeImmutableType; class DateTimeImmutableType extends VarDateTimeImmutableType implements CarbonDoctrineType { /** @use CarbonTypeConverter<CarbonImmutable> */ use CarbonTypeConverter; /** * @return class-string<CarbonImmutable> */ protected function getCarbonClassName(): string { return CarbonImmutable::class; } }