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(); }