Keywords
9 months ago
MySQL
2 years ago
AbstractMySQLPlatform.php
9 months ago
AbstractPlatform.php
9 months ago
DateIntervalUnit.php
2 years ago
MariaDBPlatform.php
2 years ago
MariaDb1010Platform.php
9 months ago
MariaDb1027Platform.php
2 years ago
MariaDb1043Platform.php
2 years ago
MariaDb1052Platform.php
2 years ago
MariaDb1060Platform.php
2 years ago
MariaDb110700Platform.php
9 months ago
MySQL57Platform.php
2 years ago
MySQL80Platform.php
2 years ago
MySQL84Platform.php
9 months ago
MySQLPlatform.php
2 years ago
PostgreSQL120Platform.php
9 months ago
TrimMode.php
2 years ago
index.php
2 years ago
DateIntervalUnit.php
19 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\DBAL\Platforms; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | final class DateIntervalUnit |
| 6 | { |
| 7 | public const SECOND = 'SECOND'; |
| 8 | public const MINUTE = 'MINUTE'; |
| 9 | public const HOUR = 'HOUR'; |
| 10 | public const DAY = 'DAY'; |
| 11 | public const WEEK = 'WEEK'; |
| 12 | public const MONTH = 'MONTH'; |
| 13 | public const QUARTER = 'QUARTER'; |
| 14 | public const YEAR = 'YEAR'; |
| 15 | private function __construct() |
| 16 | { |
| 17 | } |
| 18 | } |
| 19 |