Skip to content

Commit

Permalink
Merge pull request #1 from kaushikindianic/patch-1
Browse files Browse the repository at this point in the history
fixed: Attempted to load class  error
  • Loading branch information
joostfaassen committed Jul 25, 2021
2 parents d10984f + f3d187d commit 7542de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backend/IniBackend.php
Expand Up @@ -12,7 +12,7 @@ public function __construct($path, $extension = '.ini')
$this->path = $path;
$this->extension = $extension;
if (!file_exists($path)) {
throw new RuntimeException("No such path: " . $path);
throw new \RuntimeException("No such path: " . $path);
}
}

Expand Down

0 comments on commit 7542de5

Please sign in to comment.