From 936688e08ce391a941d53063b5c4976a3ef193e7 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Thu, 15 Nov 2018 19:22:32 +0100 Subject: [PATCH] [Bridge] Fix typos --- lib/Bridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Bridge.php b/lib/Bridge.php index 8a8139f0..73625f33 100644 --- a/lib/Bridge.php +++ b/lib/Bridge.php @@ -45,7 +45,7 @@ class Bridge { * * @var string */ - static protected $workingDir; + protected static $workingDir; /** * Holds a list of whitelisted bridges. @@ -91,7 +91,7 @@ class Bridge { require_once $pathBridge; - if((new ReflectionClass($nameBridge))->isInstantiable()) { + if((new \ReflectionClass($nameBridge))->isInstantiable()) { return new $nameBridge(); }