From 66b11b8c417e4246d3111d96bb07081cf2ef3aa6 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Thu, 15 Nov 2018 19:38:14 +0100 Subject: [PATCH] [Bridge] Fix typo --- lib/Bridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Bridge.php b/lib/Bridge.php index f3488183..6a09b306 100644 --- a/lib/Bridge.php +++ b/lib/Bridge.php @@ -86,7 +86,7 @@ class Bridge { $filePath = self::getWorkingDir() . $name . '.php'; 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;