From b1b33207ab4f3164f497accdd9dbefadb0189343 Mon Sep 17 00:00:00 2001 From: Andrew Millington Date: Sun, 13 May 2018 18:02:23 +0100 Subject: [PATCH] Fix namespacing for Exception test --- tests/Exception/OAuthServerExceptionTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Exception/OAuthServerExceptionTest.php b/tests/Exception/OAuthServerExceptionTest.php index b86f33a1..bac914e4 100644 --- a/tests/Exception/OAuthServerExceptionTest.php +++ b/tests/Exception/OAuthServerExceptionTest.php @@ -1,5 +1,7 @@ getMockForAbstractClass(AbstractGrant::class); $grantMock->setClientRepository($clientRepositoryMock); - $abstractGrantReflection = new ReflectionClass($grantMock); + $abstractGrantReflection = new \ReflectionClass($grantMock); $validateClientMethod = $abstractGrantReflection->getMethod('validateClient'); $validateClientMethod->setAccessible(true);