Completed
Push — feature/improve-code ( 7d6b6d...e986a1 )
by Avtandil
15:08
created
src/Entities/Entity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Reflect
47 47
      *
48
-     * @param null $object
48
+     * @param Entity $object
49 49
      * @return array
50 50
      */
51 51
     public function reflect($object = null)
Please login to merge, or discard this patch.
src/Entities/Message.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
     /**
476 476
      * Get date
477 477
      *
478
-     * @return mixed
478
+     * @return integer|null
479 479
      */
480 480
     public function getDate()
481 481
     {
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
     /**
516 516
      * Get forward date
517 517
      *
518
-     * @return mixed
518
+     * @return integer|null
519 519
      */
520 520
     public function getForwardDate()
521 521
     {
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
     /**
526 526
      * Get edit date
527 527
      *
528
-     * @return mixed
528
+     * @return integer|null
529 529
      */
530 530
     public function getEditDate()
531 531
     {
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
     /**
667 667
      * Get new chat participant
668 668
      *
669
-     * @return mixed
669
+     * @return User|null
670 670
      */
671 671
     public function getNewChatParticipant()
672 672
     {
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
     /**
677 677
      * Get left chat participant
678 678
      *
679
-     * @return mixed
679
+     * @return User|null
680 680
      */
681 681
     public function getLeftChatParticipant()
682 682
     {
Please login to merge, or discard this patch.
src/Entities/ServerResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * ServerResponse constructor.
35 35
      *
36 36
      * @param array $data
37
-     * @param       $bot_name
37
+     * @param       string|null $bot_name
38 38
      */
39 39
     public function __construct(array $data, $bot_name)
40 40
     {
Please login to merge, or discard this patch.
src/Entities/Update.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     /**
103 103
      * Get update id
104 104
      *
105
-     * @return mixed|null
105
+     * @return integer
106 106
      */
107 107
     public function getUpdateId()
108 108
     {
Please login to merge, or discard this patch.