Passed
Push — main ( d8ef2c...cd0dd3 )
by PRATIK
11:14
created
src/Services/NepaliDate.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -190,24 +190,24 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.