]> Raphaƫl G. Git Repositories - userbundle/blobdiff - Entity/Group.php
Add strict
[userbundle] / Entity / Group.php
index 1141f91dca6ff863f378ae3e7dfd594ed8f02983..d7ca3c7e0c56651406fa793711ced9bfa040f61e 100644 (file)
@@ -50,7 +50,7 @@ class Group {
         * @param string $title The group name
         */
        public function __construct(string $title) {
-               $this->title = (string) $title;
+               $this->title = $title;
                $this->users = new ArrayCollection();
        }
 
@@ -68,9 +68,9 @@ class Group {
         *
         * @param string $title The group name
         *
-        * @return User
+        * @return Group
         */
-       public function setTitle(string $title) {
+       public function setTitle(string $title): Group {
                $this->title = $title;
 
                return $this;
@@ -90,9 +90,9 @@ class Group {
         *
         * @param \DateTime $created
         *
-        * @return User
+        * @return Group
         */
-       public function setCreated(\DateTime $created) {
+       public function setCreated(\DateTime $created): Group {
                $this->created = $created;
 
                return $this;
@@ -112,9 +112,9 @@ class Group {
         *
         * @param \DateTime $updated
         *
-        * @return User
+        * @return Group
         */
-       public function setUpdated(\DateTime $updated) {
+       public function setUpdated(\DateTime $updated): Group {
                $this->updated = $updated;
 
                return $this;