1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00
This commit is contained in:
Jeremy Benoist 2017-06-07 23:23:34 +02:00
parent 0c00e52516
commit eb570e49c8
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
3 changed files with 6 additions and 8 deletions

View file

@ -110,6 +110,8 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf
private $trusted;
/**
* @var ArrayCollection
*
* @ORM\OneToMany(targetEntity="Wallabag\ApiBundle\Entity\Client", mappedBy="user", cascade={"remove"})
*/
protected $clients;
@ -306,10 +308,8 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf
*/
public function getFirstClient()
{
if (empty($this->clients)) {
return $this->clients;
if (!empty($this->clients)) {
return $this->clients->first();
}
return $this->clients->first();
}
}