core: Fix grammar (#923)
This commit is contained in:
parent
d951000c23
commit
dd95ec6200
3 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue