Completed
Push — master ( 01907b...5981e6 )
by mehdi
03:03
created
src/Convert.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -64,6 +64,10 @@
 block discarded – undo
64 64
     *
65 65
     *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
66 66
     */
67
+
68
+    /**
69
+     * @param \DateTime $date_time
70
+     */
67 71
     public function __construct( $date_time = null ) 
68 72
     {
69 73
 
Please login to merge, or discard this patch.
src/Datium.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
    * Get current datetime
184 184
    *
185 185
    * @since  Aug 17 2015
186
-   * @return object
186
+   * @return Datium
187 187
    */
188 188
     public static function now()
189 189
     {
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
    * @param integer $minute minute number
205 205
    * @param integer $second second number
206 206
    *
207
-   * @return object
207
+   * @return Datium
208 208
    */
209 209
     public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 )
210 210
     {
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
     * @param object $date_start Start of the DateTime
244 244
     * @param object $date_end   End of the DateTime
245 245
     *
246
-    * @return object
246
+    * @return Datium
247 247
     */
248 248
     public static function between( $date_start, $date_end )
249 249
     {
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     *
290 290
     * @param object $calendar Assigned calendar to when calendar should start.
291 291
     *
292
-    * @return object
292
+    * @return Datium
293 293
     */
294 294
     public function to( $calendar )
295 295
     {
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
    *
331 331
    * @param string $value How much date should be added to current date
332 332
    *
333
-   * @return object
333
+   * @return Datium
334 334
    */
335 335
     public function add( $value )
336 336
     {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
    *
361 361
    * @param string $value How much date should increase from current date
362 362
    *
363
-   * @return obejct
363
+   * @return Datium
364 364
    */
365 365
     public function sub( $value )
366 366
     {
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
    *
391 391
    * @param string $type Name of the calendar to caculate leap year
392 392
    *
393
-   * @return boolean
393
+   * @return Leap
394 394
    */
395 395
     public function leap( $type = 'gregorian' )
396 396
     {
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
     *
407 407
     * @since Aug, 22 2015
408 408
     *
409
-    * @return integer
409
+    * @return DayOf
410 410
     */
411 411
     public function dayOf()
412 412
     {
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
     *
454 454
     * @param string $language language short name fa, en, ar ...
455 455
     *
456
-    * @return object
456
+    * @return Datium
457 457
     */
458 458
     public function lang( $language = 'fa' )
459 459
     {
Please login to merge, or discard this patch.
src/Events/Events.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@
 block discarded – undo
58 58
     *
59 59
     *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
60 60
     */
61
+
62
+    /**
63
+     * @param string $path
64
+     */
61 65
     private function fetch( $path ) 
62 66
     {
63 67
 
Please login to merge, or discard this patch.