aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Entity/Client.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-01-10 17:03:03 +0100
committerGitHub <noreply@github.com>2019-01-10 17:03:03 +0100
commit03663530edf0512cc337518d794bd3c71ebdde96 (patch)
tree8d86ef334fc955af8c098ca400796549ba8e444d /src/Wallabag/ApiBundle/Entity/Client.php
parentca990600da23344b9735834bb22e8658b195a55b (diff)
parent3a2d4cf9fda87760c86320a7f8a5041d1d4256c6 (diff)
downloadwallabag-03663530edf0512cc337518d794bd3c71ebdde96.tar.gz
wallabag-03663530edf0512cc337518d794bd3c71ebdde96.tar.zst
wallabag-03663530edf0512cc337518d794bd3c71ebdde96.zip
Merge pull request #3831 from wallabag/fix/api-bad-client-id
Cast client id to avoid PG error
Diffstat (limited to 'src/Wallabag/ApiBundle/Entity/Client.php')
-rw-r--r--src/Wallabag/ApiBundle/Entity/Client.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Entity/Client.php b/src/Wallabag/ApiBundle/Entity/Client.php
index e6f98f98..78349820 100644
--- a/src/Wallabag/ApiBundle/Entity/Client.php
+++ b/src/Wallabag/ApiBundle/Entity/Client.php
@@ -11,7 +11,7 @@ use Wallabag\UserBundle\Entity\User;
11 11
12/** 12/**
13 * @ORM\Table("oauth2_clients") 13 * @ORM\Table("oauth2_clients")
14 * @ORM\Entity 14 * @ORM\Entity(repositoryClass="Wallabag\ApiBundle\Repository\ClientRepository")
15 */ 15 */
16class Client extends BaseClient 16class Client extends BaseClient
17{ 17{