From dd95ec6200df1cfbcf0ef0bce06e167a72ed7c41 Mon Sep 17 00:00:00 2001 From: Thomas Dalichow <2012-02-05.github.com@thomasdalichow.de> Date: Tue, 13 Nov 2018 17:24:36 +0100 Subject: [PATCH] core: Fix grammar (#923) --- lib/Bridge.php | 2 +- lib/Cache.php | 2 +- lib/Format.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Bridge.php b/lib/Bridge.php index e450662c..8c84a2c4 100644 --- a/lib/Bridge.php +++ b/lib/Bridge.php @@ -32,7 +32,7 @@ EOD; $pathBridge = self::getDir() . $nameBridge . '.php'; if(!file_exists($pathBridge)) { - throw new \Exception('The bridge you looking for does not exist. It should be at path ' + throw new \Exception('The bridge you are looking for does not exist. It should be at path ' . $pathBridge); } diff --git a/lib/Cache.php b/lib/Cache.php index 88be5a1a..b3ab4826 100644 --- a/lib/Cache.php +++ b/lib/Cache.php @@ -17,7 +17,7 @@ class Cache { $pathCache = self::getDir() . $nameCache . '.php'; if(!file_exists($pathCache)) { - throw new \Exception('The cache you looking for does not exist.'); + throw new \Exception('The cache you are looking for does not exist.'); } require_once $pathCache; diff --git a/lib/Format.php b/lib/Format.php index d0e4e723..31d0b638 100644 --- a/lib/Format.php +++ b/lib/Format.php @@ -18,7 +18,7 @@ class Format { $pathFormat = self::getDir() . $nameFormat . '.php'; if(!file_exists($pathFormat)) { - throw new \Exception('The format you looking for does not exist.'); + throw new \Exception('The format you are looking for does not exist.'); } require_once $pathFormat;