HEX
Server: Apache/2.4.46 (Ubuntu)
System: Linux localhost 5.11.0-49-generic #55-Ubuntu SMP Wed Jan 12 17:36:34 UTC 2022 x86_64
User: root (0)
PHP: 7.4.16
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/fieldsblaze-heroku/app/Http/Controllers/DateTime.php
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class DateTime implements BaseController {
    /* Inherited constants */
    const string DateTimeInterface::ATOM = "Y-m-d\TH:i:sP";
    const string DateTimeInterface::COOKIE = "l, d-M-Y H:i:s T";
    const string DateTimeInterface::ISO8601 = "Y-m-d\TH:i:sO";
    const string DateTimeInterface::RFC822 = "D, d M y H:i:s O";
    const string DateTimeInterface::RFC850 = "l, d-M-y H:i:s T";
    const string DateTimeInterface::RFC1036 = "D, d M y H:i:s O";
    const string DateTimeInterface::RFC1123 = "D, d M Y H:i:s O";
    const string DateTimeInterface::RFC7231 = "D, d M Y H:i:s \G\M\T";
    const string DateTimeInterface::RFC2822 = "D, d M Y H:i:s O";
    const string DateTimeInterface::RFC3339 = "Y-m-d\TH:i:sP";
    const string DateTimeInterface::RFC3339_EXTENDED = "Y-m-d\TH:i:s.vP";
    const string DateTimeInterface::RSS = "D, d M Y H:i:s O";
    const string DateTimeInterface::W3C = "Y-m-d\TH:i:sP";
    /* Methods */
    public __construct(string $datetime = "now", ?DateTimeZone $timezone = null)
    public add(DateInterval $interval): DateTime
    public static createFromFormat(string $format, string $datetime, ?DateTimeZone $timezone = null): DateTime|false
    public static createFromImmutable(DateTimeImmutable $object): DateTime
    public static createFromInterface(DateTimeInterface $object): DateTime
    public static getLastErrors(): array|false
    public modify(string $modifier): DateTime|false
    public static __set_state(array $array): DateTime
    public setDate(int $year, int $month, int $day): DateTime
    public setISODate(int $year, int $week, int $dayOfWeek = 1): DateTime
    public setTime(
        int $hour,
        int $minute,
        int $second = 0,
        int $microsecond = 0
    ): DateTime
    public setTimestamp(int $timestamp): DateTime
    public setTimezone(DateTimeZone $timezone): DateTime
    public sub(DateInterval $interval): DateTime
    public diff(DateTimeInterface $targetObject, bool $absolute = false): DateInterval
    public format(string $format): string
    public getOffset(): int
    public getTimestamp(): int
    public getTimezone(): DateTimeZone|false
    public __wakeup(): void
    }