@@ -190,24 +190,24 @@ |
||
| 190 | 190 | |
| 191 | 191 | public function toBS() |
| 192 | 192 | { |
| 193 | - return $this->nepaliYear . '-' . sprintf('%02d', $this->nepaliMonth) . '-' . sprintf('%02d', $this->nepaliDay); |
|
| 193 | + return $this->nepaliYear.'-'.sprintf('%02d', $this->nepaliMonth).'-'.sprintf('%02d', $this->nepaliDay); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | public function toFormattedBSDate() |
| 197 | 197 | { |
| 198 | - return $this->nepaliDay . ' ' . |
|
| 199 | - $this->formattedBSMonth($this->nepaliMonth) . ' ' . |
|
| 200 | - $this->nepaliYear . ',' . |
|
| 201 | - ' ' . |
|
| 198 | + return $this->nepaliDay.' '. |
|
| 199 | + $this->formattedBSMonth($this->nepaliMonth).' '. |
|
| 200 | + $this->nepaliYear.','. |
|
| 201 | + ' '. |
|
| 202 | 202 | $this->formattedBSDateOfWeek($this->dayOfWeek); |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | public function toFormattedNepaliDate() |
| 206 | 206 | { |
| 207 | - return $this->formattedNepaliNumber($this->nepaliDay) . ' ' . |
|
| 208 | - $this->formattedNepaliMonth($this->nepaliMonth) . ' ' . |
|
| 209 | - $this->formattedNepaliNumber($this->nepaliYear) . ',' . |
|
| 210 | - ' ' . |
|
| 207 | + return $this->formattedNepaliNumber($this->nepaliDay).' '. |
|
| 208 | + $this->formattedNepaliMonth($this->nepaliMonth).' '. |
|
| 209 | + $this->formattedNepaliNumber($this->nepaliYear).','. |
|
| 210 | + ' '. |
|
| 211 | 211 | $this->formattedNepaliDateOfWeek($this->dayOfWeek); |
| 212 | 212 | } |
| 213 | 213 | |