11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
|
|
namespace Lycoreco\Includes\Model;
|
|
|
|
class CustomDateTime extends \DateTime
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return $this->format('Y-m-d H:i:s');
|
|
}
|
|
} |