ci4

Форк
0
/
Time.php 
47 строк · 1.1 Кб
1
<?php
2

3
declare(strict_types=1);
4

5
/**
6
 * This file is part of CodeIgniter 4 framework.
7
 *
8
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
9
 *
10
 * For the full copyright and license information, please view
11
 * the LICENSE file that was distributed with this source code.
12
 */
13

14
namespace CodeIgniter\I18n;
15

16
use DateTimeImmutable;
17
use Stringable;
18

19
/**
20
 * A localized date/time package inspired
21
 * by Nesbot/Carbon and CakePHP/Chronos.
22
 *
23
 * Requires the intl PHP extension.
24
 *
25
 * @property-read int    $age
26
 * @property-read string $day
27
 * @property-read string $dayOfWeek
28
 * @property-read string $dayOfYear
29
 * @property-read bool   $dst
30
 * @property-read string $hour
31
 * @property-read bool   $local
32
 * @property-read string $minute
33
 * @property-read string $month
34
 * @property-read string $quarter
35
 * @property-read string $second
36
 * @property-read int    $timestamp
37
 * @property-read bool   $utc
38
 * @property-read string $weekOfMonth
39
 * @property-read string $weekOfYear
40
 * @property-read string $year
41
 *
42
 * @see \CodeIgniter\I18n\TimeTest
43
 */
44
class Time extends DateTimeImmutable implements Stringable
45
{
46
    use TimeTrait;
47
}
48

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.