From 65a801072024a581e78a421816db644eec6213d1 Mon Sep 17 00:00:00 2001
From: Tim van Dijen <tvdijen@gmail.com>
Date: Thu, 15 Nov 2018 19:55:21 +0100
Subject: [PATCH] Fix HVVM

---
 .travis.yml                       | 4 ++++
 modules/oauth/lib/OAuthServer.php | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index a0aaf0cc3..29adc1e45 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,6 +6,10 @@ php:
 - 7.1
 - 7.2
 - 7.3
+- hhvm
+matrix:
+  allow_failures:
+  - php: hhvm
 before_script:
 - composer update
 - if [[ "$TRAVIS_PHP_VERSION" == "7.0" ]]; then composer require --dev vimeo/psalm:0.3.92; fi
diff --git a/modules/oauth/lib/OAuthServer.php b/modules/oauth/lib/OAuthServer.php
index b6607e6fe..41e60383a 100644
--- a/modules/oauth/lib/OAuthServer.php
+++ b/modules/oauth/lib/OAuthServer.php
@@ -11,7 +11,7 @@ require_once(dirname(dirname(__FILE__)).'/libextinc/OAuth.php');
  * @package SimpleSAMLphp
  */
 
-class OAuthServer extends OAuthServer
+class OAuthServer extends \OAuthServer
 {
     public function __construct($store)
     {
-- 
GitLab