1
1
<?php
2
+
2
3
declare (strict_types=1 );
3
4
4
5
namespace Guava \Sequence ;
@@ -12,30 +13,26 @@ class Sequence
12
13
/**
13
14
* The period instance to use on sequence.
14
15
*
15
- * @var \Guava\Sequence\Models\SequencePeriod
16
+ * @var \Guava\Sequence\Models\SequencePeriod
16
17
*/
17
18
protected $ period ;
18
19
19
20
/**
20
21
* The date to use on sequence.
21
22
*
22
- * @var DateTimeInterface
23
+ * @var DateTimeInterface
23
24
*/
24
25
protected $ date ;
25
26
26
27
/**
27
28
* The number pattern to use on sequence.
28
29
*
29
- * @var string
30
+ * @var string
30
31
*/
31
32
protected $ pattern ;
32
33
33
34
/**
34
35
* The sequence constructor.
35
- *
36
- * @param \Guava\Sequence\Models\SequencePeriod $period
37
- * @param string $pattern
38
- * @param DateTimeInterface $date
39
36
*/
40
37
public function __construct (SequencePeriod $ period , string $ pattern , DateTimeInterface $ date )
41
38
{
@@ -46,29 +43,27 @@ public function __construct(SequencePeriod $period, string $pattern, DateTimeInt
46
43
47
44
/**
48
45
* Get the sequence number.
49
- *
50
- * @return string
51
46
*/
52
47
public function getNumber (bool $ increment = false ): string
53
48
{
54
- // dd(str($this->getPattern())
55
- // ->pipe(fn(Stringable $str) => str(strtr($str->toString(), [
56
- // '{number}' => $this->getOrdinalNumber(),
57
- // '{day}' => $this->date->format('d'),
58
- // '{month}' => $this->date->format('m'),
59
- // '{year}' => $this->date->format('Y'),
60
- // '{day_short}' => $this->date->format('j'),
61
- // '{month_short}' => $this->date->format('n'),
62
- // '{year_short}' => $this->date->format('y'),
63
- // ]))));
49
+ // dd(str($this->getPattern())
50
+ // ->pipe(fn(Stringable $str) => str(strtr($str->toString(), [
51
+ // '{number}' => $this->getOrdinalNumber(),
52
+ // '{day}' => $this->date->format('d'),
53
+ // '{month}' => $this->date->format('m'),
54
+ // '{year}' => $this->date->format('Y'),
55
+ // '{day_short}' => $this->date->format('j'),
56
+ // '{month_short}' => $this->date->format('n'),
57
+ // '{year_short}' => $this->date->format('y'),
58
+ // ]))));
64
59
$ result = strtr (
65
60
str ($ this ->getPattern ())
66
61
->replaceMatches (
67
62
'/\{number:(\d+)\}/ ' ,
68
- fn ($ matches ) => str_pad (
69
- (string )$ this ->getOrdinalNumber (),
70
- (int )$ matches [1 ],
71
- " 0 " ,
63
+ fn ($ matches ) => str_pad (
64
+ (string ) $ this ->getOrdinalNumber (),
65
+ (int ) $ matches [1 ],
66
+ ' 0 ' ,
72
67
STR_PAD_LEFT
73
68
)
74
69
)
@@ -93,8 +88,6 @@ public function getNumber(bool $increment = false): string
93
88
94
89
/**
95
90
* Get the ordinal number of sequence.
96
- *
97
- * @return int
98
91
*/
99
92
public function getOrdinalNumber (bool $ increment = false ): int
100
93
{
@@ -109,8 +102,6 @@ public function getOrdinalNumber(bool $increment = false): int
109
102
110
103
/**
111
104
* Get the pattern of sequence.
112
- *
113
- * @return string
114
105
*/
115
106
public function getPattern (): string
116
107
{
@@ -119,8 +110,6 @@ public function getPattern(): string
119
110
120
111
/**
121
112
* Increment ordinal number of period.
122
- *
123
- * @return void
124
113
*/
125
114
public function increment (): void
126
115
{
0 commit comments