add comments

pull/2487/head
jmontoyaa 9 years ago
parent e2da2b8dd1
commit 2b2a28148f
  1. 3
      src/Chamilo/ContactBundle/Entity/Category.php
  2. 6
      src/Chamilo/CoreBundle/Entity/Skill.php
  3. 6
      src/Chamilo/CoreBundle/Entity/SkillRelUserComment.php
  4. 1
      src/Chamilo/CoreBundle/Entity/SysAnnouncement.php
  5. 1
      src/Chamilo/CoreBundle/Entity/SystemTemplate.php
  6. 1
      src/Chamilo/CoreBundle/Entity/TrackEAttemptRecording.php
  7. 3
      src/Chamilo/CoreBundle/Entity/TrackEDownloads.php
  8. 1
      src/Chamilo/CoreBundle/Entity/TrackEExercises.php
  9. 1
      src/Chamilo/CoreBundle/Entity/TrackEHotpotatoes.php
  10. 1
      src/Chamilo/CoreBundle/Entity/TrackEHotspot.php
  11. 1
      src/Chamilo/CoreBundle/Entity/TrackEItemProperty.php
  12. 1
      src/Chamilo/CoreBundle/Entity/TrackELastaccess.php
  13. 1
      src/Chamilo/CoreBundle/Entity/TrackELinks.php
  14. 1
      src/Chamilo/CoreBundle/Entity/TrackELogin.php
  15. 1
      src/Chamilo/CoreBundle/Entity/TrackEOnline.php
  16. 1
      src/Chamilo/CoreBundle/Entity/TrackEOpen.php
  17. 1
      src/Chamilo/CoreBundle/Entity/TrackStoredValues.php
  18. 1
      src/Chamilo/CoreBundle/Entity/UserApiKey.php
  19. 1
      src/Chamilo/CoreBundle/Entity/UserCourseCategory.php
  20. 1
      src/Chamilo/CoreBundle/Entity/UserFriendRelationType.php
  21. 1
      src/Chamilo/CoreBundle/Entity/UserRelTag.php
  22. 1
      src/Chamilo/CoreBundle/Entity/UserRelUser.php
  23. 1
      src/Chamilo/UserBundle/Entity/Manager/UserManager.php

@ -38,6 +38,9 @@ class Category
*/
protected $email;
/**
* @return string
*/
public function __toString()
{
return (string) $this->getName();

@ -1,12 +1,6 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Skill Entity
*
* @package chamilo.skill
*/
namespace Chamilo\CoreBundle\Entity;
use Chamilo\SkillBundle\Entity\Profile;

@ -1,12 +1,6 @@
<?php
/* For licensing terms, see /license.txt */
/**
* SkillRelUserComment Entity
*
* @package chamilo.skill
*/
namespace Chamilo\CoreBundle\Entity;
use Chamilo\UserBundle\Entity\User;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
@ -20,7 +21,7 @@ class TrackEDownloads
* @ORM\GeneratedValue
*/
private $downId;
/**
* @var integer
*

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;

@ -12,7 +12,6 @@ use Sonata\UserBundle\Entity\UserManager as BaseUserManager;
*/
class UserManager extends BaseUserManager
{
/**
* Finds a user either by confirmation token
*

Loading…
Cancel
Save