aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Entity/AccessToken.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-09 20:51:37 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-09 20:51:37 +0200
commit8dc4cd0f25838d074a1b512392f2087a44d26f54 (patch)
treed3b8d404da4aa0e8847bf67f77f0ff78da8a2c9a /src/Wallabag/ApiBundle/Entity/AccessToken.php
parente39aec3e38144f1a2ddb0027ec724e3dfd6f53f1 (diff)
downloadwallabag-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/AccessToken.php')
-rw-r--r--src/Wallabag/ApiBundle/Entity/AccessToken.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Entity/AccessToken.php b/src/Wallabag/ApiBundle/Entity/AccessToken.php
index 2ff63a83..c09a0c80 100644
--- a/src/Wallabag/ApiBundle/Entity/AccessToken.php
+++ b/src/Wallabag/ApiBundle/Entity/AccessToken.php
@@ -19,7 +19,7 @@ class AccessToken extends BaseAccessToken
19 protected $id; 19 protected $id;
20 20
21 /** 21 /**
22 * @ORM\ManyToOne(targetEntity="Client") 22 * @ORM\ManyToOne(targetEntity="Client", inversedBy="accessTokens")
23 * @ORM\JoinColumn(nullable=false) 23 * @ORM\JoinColumn(nullable=false)
24 */ 24 */
25 protected $client; 25 protected $client;