File "DateIntervalUnit.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/dbal/src/Platforms/Keywords/DateIntervalUnit.php
File size: 326 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Platforms;

enum DateIntervalUnit: string
{
    case SECOND  = 'SECOND';
    case MINUTE  = 'MINUTE';
    case HOUR    = 'HOUR';
    case DAY     = 'DAY';
    case WEEK    = 'WEEK';
    case MONTH   = 'MONTH';
    case QUARTER = 'QUARTER';
    case YEAR    = 'YEAR';
}