[Bridge] Fix typo

This commit is contained in:
logmanoriginal 2018-11-15 19:38:14 +01:00
parent 1b34d9860e
commit 66b11b8c41

View file

@ -86,7 +86,7 @@ class Bridge {
$filePath = self::getWorkingDir() . $name . '.php'; $filePath = self::getWorkingDir() . $name . '.php';
if(!file_exists($filePath)) { if(!file_exists($filePath)) {
throw new \Exception('Cache file ' . $filePath . ' does not exist!'); throw new \Exception('Bridge file ' . $filePath . ' does not exist!');
} }
require_once $filePath; require_once $filePath;