From 9f8c7e7014e3dfd8823926a3fc21c1fb2fe60de5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 8 Mar 2024 00:13:29 +0100 Subject: [PATCH] Fix header comment Document member variables --- Entity/User.php | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Entity/User.php b/Entity/User.php index 4b3d4e3..7a82144 100644 --- a/Entity/User.php +++ b/Entity/User.php @@ -1,11 +1,11 @@ + * (c) Raphaël Gertz * - * for the full copyright and license information, please view the license + * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ @@ -19,62 +19,62 @@ use Rapsys\UserBundle\Entity\User as BaseUser; class User extends BaseUser { /** - * @var ?string + * City */ private ?string $city; /** - * @var ?string + * Phone */ private ?string $phone; /** - * @var Country + * Country */ private ?Country $country; /** - * @var ?string + * Pseudonym */ private ?string $pseudonym; /** - * @var ?string + * Zipcode */ private ?string $zipcode; /** - * @var \Doctrine\Common\Collections\Collection + * Applications collection */ private Collection $applications; /** - * @var \Doctrine\Common\Collections\Collection + * Dances collection */ private Collection $dances; /** - * @var \Doctrine\Common\Collections\Collection + * Locations collection */ private Collection $locations; /** - * @var \Doctrine\Common\Collections\Collection + * Snippets collection */ private Collection $snippets; /** - * @var \Doctrine\Common\Collections\Collection + * Subscribers collection */ private Collection $subscribers; /** - * @var \Doctrine\Common\Collections\Collection + * Subscriptions collection */ private Collection $subscriptions; /** - * @var \Doctrine\Common\Collections\Collection + * Google tokens collection */ private Collection $googleTokens; -- 2.41.0