HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/give/src/Framework/Support/Facades/DateTime/Temporal.php
<?php

namespace Give\Framework\Support\Facades\DateTime;

use DateTimeInterface;
use Give\Framework\Support\Facades\Facade;

/**
 * @since 4.0.0 added withStartOfDay, withEndOfDay, immutableOrClone
 * @since 3.20. added getDateTimestamp
 * @since 2.19.6
 *
 * @method static DateTimeInterface toDateTime(string $date)
 * @method static DateTimeInterface getCurrentDateTime()
 * @method static string getFormattedDateTime(DateTimeInterface $dateTime)
 * @method static string getCurrentFormattedDateForDatabase()
 * @method static DateTimeInterface withoutMicroseconds(DateTimeInterface $dateTime)
 * @method static DateTimeInterface withStartOfDay(DateTimeInterface $dateTime)
 * @method static DateTimeInterface withEndOfDay(DateTimeInterface $dateTime)
 * @method static DateTimeInterface immutableOrClone(DateTimeInterface $dateTime)
 * @method static int getDateTimestamp(string $date, string $timezone = '')
 * @method static string getFormattedDateTimeUsingTimeZoneAndFormatSettings(DateTimeInterface $dateTime)
 */
class Temporal extends Facade
{
    protected function getFacadeAccessor(): string
    {
        return TemporalFacade::class;
    }
}