From 26d2a960b852ba8cbcbd81a29a3f2f56e03be044 Mon Sep 17 00:00:00 2001
From: Tim van Dijen <tvdijen@gmail.com>
Date: Fri, 29 Dec 2017 22:40:32 +0100
Subject: [PATCH] Typo's

---
 modules/authYubiKey/libextinc/Yubico.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/authYubiKey/libextinc/Yubico.php b/modules/authYubiKey/libextinc/Yubico.php
index ed6c9efa1..ca7f2690c 100644
--- a/modules/authYubiKey/libextinc/Yubico.php
+++ b/modules/authYubiKey/libextinc/Yubico.php
@@ -66,19 +66,19 @@ class Auth_Yubico
 	 * Yubico client ID
 	 * @var string
 	 */
-	private var $_id;
+	private $_id;
 
 	/**
 	 * Yubico client key
 	 * @var string
 	 */
-	private var $_key;
+	private $_key;
 
 	/**
 	 * Response from server
 	 * @var string
 	 */
-	private var $_response;
+	private $_response;
 
 	/**
 	 * Constructor
@@ -136,7 +136,7 @@ class Auth_Yubico
 		/* Verify signature. */
 		if ($this->_key <> "") {
 			$rows = explode("\r\n", $responseMsg);
-            response = array();
+            $response = array();
 			while (list(, $val) = each($rows)) {
 				// = is also used in BASE64 encoding so we only replace the first = by # which is not used in BASE64
 				$val = preg_replace('/=/', '#', $val, 1);
-- 
GitLab