From 5f146a257edc5581e3188c98f803b89a1951edc1 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Thu, 15 Nov 2018 19:24:43 +0100 Subject: [PATCH] [Bridge] Change visibility from private to protected --- lib/Bridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Bridge.php b/lib/Bridge.php index 73625f33..3ac88768 100644 --- a/lib/Bridge.php +++ b/lib/Bridge.php @@ -55,7 +55,7 @@ class Bridge { * * @var array */ - private static $whitelist = array(); + protected static $whitelist = array(); /** * Throws an exception when trying to create a new instance of this class. @@ -246,7 +246,7 @@ class Bridge { * @return string|null The sanitized bridge name if the provided name is * valid, null otherwise. */ - private static function sanitizeBridgeName($name) { + protected static function sanitizeBridgeName($name) { if(is_string($name)) {