Skip to content

Commit f935c74

Browse files
authored
Bug fixed namespace Exception
1 parent 1d45fb9 commit f935c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helpers/GoogleHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ abstract class GoogleHelper
77
private static function loadConfig()
88
{
99
$configPath = __DIR__.'/../../../../.config.json';
10-
if(!file_exists($configPath)) throw new Exception('Not found config.json');
10+
if(!file_exists($configPath)) throw new \Exception('Not found config.json');
1111
$contents = file_get_contents($configPath);
1212
$config = json_decode($contents);
1313

0 commit comments

Comments
 (0)