Completed
Push — master ( 3c0ddf...aeaf53 )
by Roni
06:36
created
Common/BaseDateTime.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     /**
92 92
      * @param $format
93
-     * @param $items
93
+     * @param string[] $items
94 94
      * @return mixed
95 95
      */
96 96
     protected function getInBengali($format, $items)
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 
195 195
     /**
196 196
      * @param $slot
197
-     * @param $hour
197
+     * @param integer $hour
198 198
      * @return mixed
199 199
      */
200 200
     protected function isInTimeSlot($slot, $hour)
Please login to merge, or discard this patch.
Tests/Types/BnDateTimeTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -147,6 +147,12 @@
 block discarded – undo
147 147
         $this->assertEquals("১৪-০৪-২০১৪ ০৮:০০:০০", $object->getDateTime()->format('d-m-Y H:i:s'));
148 148
     }
149 149
 
150
+    /**
151
+     * @param string $time
152
+     * @param integer $year
153
+     * @param integer $month
154
+     * @param integer $day
155
+     */
150 156
     protected function createObjectAndSetBanglaDate($time, $year, $month, $day)
151 157
     {
152 158
         return $this->createObject($time)->setDate($year, $month, $day);
Please login to merge, or discard this patch.