aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/GroupBundle/Entity/Invitation.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/GroupBundle/Entity/Invitation.php')
-rw-r--r--src/Wallabag/GroupBundle/Entity/Invitation.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Wallabag/GroupBundle/Entity/Invitation.php b/src/Wallabag/GroupBundle/Entity/Invitation.php
index 6946bede..e944b348 100644
--- a/src/Wallabag/GroupBundle/Entity/Invitation.php
+++ b/src/Wallabag/GroupBundle/Entity/Invitation.php
@@ -6,6 +6,7 @@ use Doctrine\ORM\Mapping as ORM;
6 6
7/** 7/**
8 * @ORM\Entity 8 * @ORM\Entity
9 * @ORM\Table(name="invitation")
9 */ 10 */
10class Invitation 11class Invitation
11{ 12{
@@ -42,7 +43,7 @@ class Invitation
42 /** 43 /**
43 * @return \DateTime 44 * @return \DateTime
44 */ 45 */
45 public function getDate(): \DateTime 46 public function getDate()
46 { 47 {
47 return $this->date; 48 return $this->date;
48 } 49 }
@@ -58,7 +59,7 @@ class Invitation
58 /** 59 /**
59 * @return mixed 60 * @return mixed
60 */ 61 */
61 public function getUserGroup(): UserGroup 62 public function getUserGroup()
62 { 63 {
63 return $this->userGroup; 64 return $this->userGroup;
64 } 65 }