From c665b04d8444288490b056fff8dba5514f3e5ad2 Mon Sep 17 00:00:00 2001 From: Quentin Dreyer Date: Mon, 7 Aug 2017 15:18:02 +0200 Subject: [PATCH] Fixed Propel undefined use That was causing an internal server error in a case where I was using another Client class without the correct or missing use. --- Propel/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Propel/Client.php b/Propel/Client.php index 47592d02..d5a6fc30 100644 --- a/Propel/Client.php +++ b/Propel/Client.php @@ -11,7 +11,7 @@ namespace FOS\OAuthServerBundle\Propel; -use FOS\OAuthServerBundle\Propel\om\BaseClient; +use FOS\OAuthServerBundle\Model\Client as BaseClient; use FOS\OAuthServerBundle\Model\ClientInterface; use FOS\OAuthServerBundle\Util\Random; use OAuth2\OAuth2;