17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
|
|
namespace Itguild\Tables\formats;
|
|
|
|
use DateTimeImmutable;
|
|
|
|
class DateFormat extends BaseFormat
|
|
{
|
|
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
static function fetch(?string $data, string $options = ""): ?string
|
|
{
|
|
return (new DateTimeImmutable($data ?? ""))->format($options) ?? null;
|
|
}
|
|
} |