Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/theseer/../egulias/.././unicodeveloper/.././nunomaduro/../mews/../maennchen/../theseer/../monolog/../phpoffice/../maennchen/../ramsey/../theseer/../egulias/./../voku/../tijsverkoyen/../egulias/../doctrine/./dbal/src/Platforms
الملفات الموجودة في هذا الـ Path:
.
..
AbstractMySQLPlatform.php
AbstractPlatform.php
DB2111Platform.php
DB2Platform.php
DateIntervalUnit.php
Keywords
MariaDBPlatform.php
MariaDb1027Platform.php
MariaDb1043Platform.php
MariaDb1052Platform.php
MySQL
MySQL57Platform.php
MySQL80Platform.php
MySQLPlatform.php
OraclePlatform.php
PostgreSQL100Platform.php
PostgreSQL94Platform.php
PostgreSQLPlatform.php
SQLServer
SQLServer2012Platform.php
SQLServerPlatform.php
SQLite
SqlitePlatform.php
TrimMode.php

مشاهدة ملف: DateIntervalUnit.php

<?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()
    {
    }
}