Completed
Pull Request — 1.11.x (#1163)
by José
71:40 queued 25:11
created
src/Chamilo/CoreBundle/Entity/SkillRelUser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     /**
294 294
      * Get comments
295 295
      * @param boolean $sortDescByDateTime
296
-     * @return ArrayCollection
296
+     * @return \Doctrine\Common\Collections\ArrayCollection
297 297
      */
298 298
     public function getComments($sortDescByDateTime = false)
299 299
     {
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
 
312 312
     /**
313 313
      * Calculate the average value from the feedback comments
314
-     * @return type
314
+     * @return string
315 315
      */
316 316
     public function getAverage()
317 317
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/SkillRelUserComment.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
     /**
80 80
      * Get skillRelUser
81
-     * @return Chamilo\CoreBundle\Entity\SkillRelUser
81
+     * @return SkillRelUser
82 82
      */
83 83
     public function getSkillRelUser()
84 84
     {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
     /**
89 89
      * Get feedbackGiver
90
-     * @return Chamilo\UserBundle\Entity\User
90
+     * @return \Chamilo\UserBundle\Entity\User
91 91
      */
92 92
     public function getFeedbackGiver()
93 93
     {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     /**
116 116
      * Get feedbackDateTime
117
-     * @return type
117
+     * @return \DateTime
118 118
      */
119 119
     public function getFeedbackDateTime()
120 120
     {
Please login to merge, or discard this patch.
src/Chamilo/UserBundle/Entity/User.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -991,7 +991,7 @@  discard block
 block discarded – undo
991 991
     /**
992 992
      * Get pictureUri
993 993
      *
994
-     * @return Media
994
+     * @return string
995 995
      */
996 996
     public function getPictureUri()
997 997
     {
@@ -1368,7 +1368,7 @@  discard block
 block discarded – undo
1368 1368
     }
1369 1369
 
1370 1370
     /**
1371
-     * @return Media
1371
+     * @return string
1372 1372
      */
1373 1373
     public function getAvatar()
1374 1374
     {
@@ -1637,7 +1637,7 @@  discard block
 block discarded – undo
1637 1637
     /**
1638 1638
      * Returns the creation date.
1639 1639
      *
1640
-     * @return \DateTime|null
1640
+     * @return \DateTime
1641 1641
      */
1642 1642
     public function getCreatedAt()
1643 1643
     {
@@ -1661,7 +1661,7 @@  discard block
 block discarded – undo
1661 1661
     /**
1662 1662
      * Returns the last update date.
1663 1663
      *
1664
-     * @return \DateTime|null
1664
+     * @return \DateTime
1665 1665
      */
1666 1666
     public function getUpdatedAt()
1667 1667
     {
@@ -1671,7 +1671,7 @@  discard block
 block discarded – undo
1671 1671
     /**
1672 1672
      * Returns the expiration date.
1673 1673
      *
1674
-     * @return \DateTime|null
1674
+     * @return \DateTime
1675 1675
      */
1676 1676
     public function getExpiresAt()
1677 1677
     {
@@ -2137,7 +2137,7 @@  discard block
 block discarded – undo
2137 2137
       /**
2138 2138
      * Returns the user roles
2139 2139
      *
2140
-     * @return array The roles
2140
+     * @return string[] The roles
2141 2141
      */
2142 2142
     public function getRoles()
2143 2143
     {
@@ -2463,7 +2463,7 @@  discard block
 block discarded – undo
2463 2463
     /**
2464 2464
      * Check if the user has the skill
2465 2465
      * @param \Chamilo\CoreBundle\Entity\Skill $skill The skill
2466
-     * @return boolean
2466
+     * @return boolean|null
2467 2467
      */
2468 2468
     public function hasSkill(\Chamilo\CoreBundle\Entity\Skill $skill)
2469 2469
     {
Please login to merge, or discard this patch.