diff options
| author | polo <ordipolo@gmx.fr> | 2023-07-22 12:29:47 +0200 |
|---|---|---|
| committer | polo <ordipolo@gmx.fr> | 2023-07-22 12:29:47 +0200 |
| commit | 747674b450d6840ce9bd9aecd765cf31445ef8d3 (patch) | |
| tree | 46e47fd65c751e1951d9aa8438aea1b8c2d8aece /src/Dates.php | |
| parent | 9bdfb5196a2ee1cbfc403702e8d2ef88076d366f (diff) | |
| download | AppliGestionPHP-747674b450d6840ce9bd9aecd765cf31445ef8d3.tar.gz AppliGestionPHP-747674b450d6840ce9bd9aecd765cf31445ef8d3.tar.bz2 AppliGestionPHP-747674b450d6840ce9bd9aecd765cf31445ef8d3.zip | |
navigation entre sections, boucle principale, client ou prospect
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 | ||
