src/Application/Sonata/UserBundle/Document/Group.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Application\Sonata\UserBundle\Document;
  3. use Sonata\UserBundle\Document\BaseGroup as BaseGroup;
  4. /**
  5.  * This file has been generated by the SonataEasyExtendsBundle.
  6.  *
  7.  * @link https://sonata-project.org/easy-extends
  8.  *
  9.  * References:
  10.  * @link http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/working-with-objects.html
  11.  */
  12. class Group extends BaseGroup
  13. {
  14.     /**
  15.      * @var int $id
  16.      */
  17.     protected $id;
  18.     /**
  19.      * Get id.
  20.      *
  21.      * @return int $id
  22.      */
  23.     public function getId()
  24.     {
  25.         return $this->id;
  26.     }
  27. }