Lullabot/mpx-php

View on GitHub
src/DataService/DateTime/NullDateTime.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace Lullabot\Mpx\DataService\DateTime;

/**
 * Implements an empty date and time.
 */
class NullDateTime implements DateTimeFormatInterface
{
    public function format(string $format): string
    {
        return '';
    }
}