aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/GroupBundle/Entity/Invitation.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-03-28 15:04:39 +0200
committerThomas Citharel <tcit@tcit.fr>2017-06-23 09:26:41 +0200
commit2585953e0dae631b65c59b0e31196d65bdde84df (patch)
treeaa40f9658d13361c27399940e72d0d25e4b8d918 /src/Wallabag/GroupBundle/Entity/Invitation.php
parent2041810adbc6e663e4520337805c0003c77762e2 (diff)
downloadwallabag-2585953e0dae631b65c59b0e31196d65bdde84df.tar.gz
wallabag-2585953e0dae631b65c59b0e31196d65bdde84df.tar.zst
wallabag-2585953e0dae631b65c59b0e31196d65bdde84df.zip
Fixed typos
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 }