[Bridge] Fix typos

This commit is contained in:
logmanoriginal 2018-11-15 19:22:32 +01:00
parent 4b5372638c
commit 936688e08c

View file

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