ci4

Форк
0
/
TimeLegacy.php 
48 строк · 1.3 Кб
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 DateTime;
17

18
/**
19
 * Legacy Time class.
20
 *
21
 * This class is only for backward compatibility. Do not use.
22
 * This is not immutable! Some methods are immutable,
23
 * but some methods can alter the state.
24
 *
25
 * @property int    $age         read-only
26
 * @property string $day         read-only
27
 * @property string $dayOfWeek   read-only
28
 * @property string $dayOfYear   read-only
29
 * @property bool   $dst         read-only
30
 * @property string $hour        read-only
31
 * @property bool   $local       read-only
32
 * @property string $minute      read-only
33
 * @property string $month       read-only
34
 * @property string $quarter     read-only
35
 * @property string $second      read-only
36
 * @property int    $timestamp   read-only
37
 * @property bool   $utc         read-only
38
 * @property string $weekOfMonth read-only
39
 * @property string $weekOfYear  read-only
40
 * @property string $year        read-only
41
 *
42
 * @deprecated Use Time instead.
43
 * @see \CodeIgniter\I18n\TimeLegacyTest
44
 */
45
class TimeLegacy extends DateTime
46
{
47
    use TimeTrait;
48
}
49

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

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

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

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