This commit is contained in:
Jeremy Benoist 2024-11-25 09:27:39 +01:00
parent b7e4640f86
commit 78c0809b11
No known key found for this signature in database
GPG key ID: 7168D5DD29F38552

View file

@ -132,14 +132,14 @@ class User extends BaseUser implements EmailTwoFactorInterface, GoogleTwoFactorI
protected $config; protected $config;
/** /**
* @var ArrayCollection&iterable<\Wallabag\Entity\SiteCredential> * @var ArrayCollection&iterable<SiteCredential>
* *
* @ORM\OneToMany(targetEntity="Wallabag\Entity\SiteCredential", mappedBy="user", cascade={"remove"}) * @ORM\OneToMany(targetEntity="Wallabag\Entity\SiteCredential", mappedBy="user", cascade={"remove"})
*/ */
protected $siteCredentials; protected $siteCredentials;
/** /**
* @var ArrayCollection&iterable<\Wallabag\Entity\Api\Client> * @var ArrayCollection&iterable<Client>
* *
* @ORM\OneToMany(targetEntity="Wallabag\Entity\Api\Client", mappedBy="user", cascade={"remove"}) * @ORM\OneToMany(targetEntity="Wallabag\Entity\Api\Client", mappedBy="user", cascade={"remove"})
*/ */