diff options
Diffstat (limited to 'src/Wallabag/ApiBundle')
-rw-r--r-- | src/Wallabag/ApiBundle/Entity/AccessToken.php | 2 | ||||
-rw-r--r-- | src/Wallabag/ApiBundle/Entity/AuthCode.php | 2 | ||||
-rw-r--r-- | src/Wallabag/ApiBundle/Entity/RefreshToken.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/ApiBundle/Entity/AccessToken.php b/src/Wallabag/ApiBundle/Entity/AccessToken.php index d6cf0af5..b1f4e7de 100644 --- a/src/Wallabag/ApiBundle/Entity/AccessToken.php +++ b/src/Wallabag/ApiBundle/Entity/AccessToken.php | |||
@@ -25,7 +25,7 @@ class AccessToken extends BaseAccessToken | |||
25 | protected $client; | 25 | protected $client; |
26 | 26 | ||
27 | /** | 27 | /** |
28 | * @ORM\ManyToOne(targetEntity="Wallabag\CoreBundle\Entity\User") | 28 | * @ORM\ManyToOne(targetEntity="Wallabag\UserBundle\Entity\User") |
29 | */ | 29 | */ |
30 | protected $user; | 30 | protected $user; |
31 | } | 31 | } |
diff --git a/src/Wallabag/ApiBundle/Entity/AuthCode.php b/src/Wallabag/ApiBundle/Entity/AuthCode.php index 7873d97d..81398158 100644 --- a/src/Wallabag/ApiBundle/Entity/AuthCode.php +++ b/src/Wallabag/ApiBundle/Entity/AuthCode.php | |||
@@ -25,7 +25,7 @@ class AuthCode extends BaseAuthCode | |||
25 | protected $client; | 25 | protected $client; |
26 | 26 | ||
27 | /** | 27 | /** |
28 | * @ORM\ManyToOne(targetEntity="Wallabag\CoreBundle\Entity\User") | 28 | * @ORM\ManyToOne(targetEntity="Wallabag\UserBundle\Entity\User") |
29 | */ | 29 | */ |
30 | protected $user; | 30 | protected $user; |
31 | } | 31 | } |
diff --git a/src/Wallabag/ApiBundle/Entity/RefreshToken.php b/src/Wallabag/ApiBundle/Entity/RefreshToken.php index 74c564b7..be2c1d2e 100644 --- a/src/Wallabag/ApiBundle/Entity/RefreshToken.php +++ b/src/Wallabag/ApiBundle/Entity/RefreshToken.php | |||
@@ -25,7 +25,7 @@ class RefreshToken extends BaseRefreshToken | |||
25 | protected $client; | 25 | protected $client; |
26 | 26 | ||
27 | /** | 27 | /** |
28 | * @ORM\ManyToOne(targetEntity="Wallabag\CoreBundle\Entity\User") | 28 | * @ORM\ManyToOne(targetEntity="Wallabag\UserBundle\Entity\User") |
29 | */ | 29 | */ |
30 | protected $user; | 30 | protected $user; |
31 | } | 31 | } |