3
declare(strict_types=1);
6
* This file is part of CodeIgniter 4 framework.
8
* (c) CodeIgniter Foundation <admin@codeigniter.com>
10
* For the full copyright and license information, please view
11
* the LICENSE file that was distributed with this source code.
14
namespace CodeIgniter\I18n;
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.
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
42
* @deprecated Use Time instead.
43
* @see \CodeIgniter\I18n\TimeLegacyTest
45
class TimeLegacy extends DateTime