diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-09 20:51:37 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-09 20:51:37 +0200 |
commit | 8dc4cd0f25838d074a1b512392f2087a44d26f54 (patch) | |
tree | d3b8d404da4aa0e8847bf67f77f0ff78da8a2c9a /src/Wallabag/ApiBundle/Entity/RefreshToken.php | |
parent | e39aec3e38144f1a2ddb0027ec724e3dfd6f53f1 (diff) | |
download | wallabag-8dc4cd0f25838d074a1b512392f2087a44d26f54.tar.gz wallabag-8dc4cd0f25838d074a1b512392f2087a44d26f54.tar.zst wallabag-8dc4cd0f25838d074a1b512392f2087a44d26f54.zip |
Fix entities definition
As per Doctrine said in the debug tool bar:
- The field Wallabag\ApiBundle\Entity\Client#refreshTokens is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity Wallabag\ApiBundle\Entity\RefreshToken#client does not contain the required 'inversedBy="refreshTokens"' attribute.
- The field Wallabag\ApiBundle\Entity\Client#accessTokens is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity Wallabag\ApiBundle\Entity\AccessToken#client does not contain the required 'inversedBy="accessTokens"' attribute.
Diffstat (limited to 'src/Wallabag/ApiBundle/Entity/RefreshToken.php')
-rw-r--r-- | src/Wallabag/ApiBundle/Entity/RefreshToken.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Entity/RefreshToken.php b/src/Wallabag/ApiBundle/Entity/RefreshToken.php index 6d0cab68..822a02d8 100644 --- a/src/Wallabag/ApiBundle/Entity/RefreshToken.php +++ b/src/Wallabag/ApiBundle/Entity/RefreshToken.php | |||
@@ -19,7 +19,7 @@ class RefreshToken extends BaseRefreshToken | |||
19 | protected $id; | 19 | protected $id; |
20 | 20 | ||
21 | /** | 21 | /** |
22 | * @ORM\ManyToOne(targetEntity="Client") | 22 | * @ORM\ManyToOne(targetEntity="Client", inversedBy="refreshTokens") |
23 | * @ORM\JoinColumn(nullable=false) | 23 | * @ORM\JoinColumn(nullable=false) |
24 | */ | 24 | */ |
25 | protected $client; | 25 | protected $client; |