[Bridge] Change visibility from private to protected
This commit is contained in:
parent
936688e08c
commit
5f146a257e
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ class Bridge {
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
private static $whitelist = array();
|
protected static $whitelist = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Throws an exception when trying to create a new instance of this class.
|
* 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
|
* @return string|null The sanitized bridge name if the provided name is
|
||||||
* valid, null otherwise.
|
* valid, null otherwise.
|
||||||
*/
|
*/
|
||||||
private static function sanitizeBridgeName($name) {
|
protected static function sanitizeBridgeName($name) {
|
||||||
|
|
||||||
if(is_string($name)) {
|
if(is_string($name)) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue