Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
doctrine
/
dbal
/
src
/
Platforms
:
DateIntervalUnit.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Doctrine\DBAL\Platforms; final class DateIntervalUnit { public const SECOND = 'SECOND'; public const MINUTE = 'MINUTE'; public const HOUR = 'HOUR'; public const DAY = 'DAY'; public const WEEK = 'WEEK'; public const MONTH = 'MONTH'; public const QUARTER = 'QUARTER'; public const YEAR = 'YEAR'; /** @codeCoverageIgnore */ private function __construct() { } }