mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-28 12:01:13 +00:00
Fix CS
This commit is contained in:
parent
b7e4640f86
commit
78c0809b11
1 changed files with 2 additions and 2 deletions
|
@ -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"})
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue