diff options
Diffstat (limited to 'src/Dates.php')
| -rw-r--r-- | src/Dates.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Dates.php b/src/Dates.php index eb57ca8..2fe93cb 100644 --- a/src/Dates.php +++ b/src/Dates.php | |||
| @@ -32,24 +32,24 @@ class Dates | |||
| 32 | // getters | 32 | // getters |
| 33 | public function getDate(): string | 33 | public function getDate(): string |
| 34 | { | 34 | { |
| 35 | return($this->date); | 35 | return $this->date; |
| 36 | } | 36 | } |
| 37 | public function getDay(): string | 37 | public function getDay(): string |
| 38 | { | 38 | { |
| 39 | return($this->day); | 39 | return $this->day; |
| 40 | } | 40 | } |
| 41 | public function getMonth(): string | 41 | public function getMonth(): string |
| 42 | { | 42 | { |
| 43 | return($this->month); | 43 | return $this->month; |
| 44 | } | 44 | } |
| 45 | public function getYear(): string | 45 | public function getYear(): string |
| 46 | { | 46 | { |
| 47 | return($this->year); | 47 | return $this->year; |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | public function getTimestamp(): int | 50 | public function getTimestamp(): int |
| 51 | { | 51 | { |
| 52 | return($this->timestamp); | 52 | return $this->timestamp; |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | 55 | ||
