-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathDateStyle.php
46 lines (41 loc) · 1.44 KB
/
DateStyle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
declare(strict_types=1);
namespace Psl\DateTime;
use Psl\Default\DefaultInterface;
/**
* Enum representing date format styles.
*
* This enum is used to specify the style of date formatting operations, allowing for varying levels of detail.
* The styles range from no date (None) to a fully detailed date representation (Full).
*
* - None: No date formatting.
* - Short: Short format that typically includes numeric values (e.g., 12/31/2020).
* - Medium: Medium format that provides a balance between brevity and detail (e.g., Jan 31, 2020).
* - Long: Long format that includes full month names and often includes the day of the week (e.g., Friday, January 31, 2020).
* - Full: Full format that provides the most detail, often including the full day and month names, and the year in full (e.g., Friday, January 31, 2020).
*
* The default format style is Medium.
*/
enum DateStyle implements DefaultInterface
{
case None;
case Short;
case Medium;
case Long;
case Full;
/**
* Returns the default date format style.
*
* This method implements the DefaultInterface, providing a standard way to access the default enum case.
* The Medium style is returned as the default, representing a balance between detail and brevity.
*
* @return static The default date format style.
*
* @pure
*/
#[\Override]
public static function default(): static
{
return self::Medium;
}
}