Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix RepositoryLoadException initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jun 28, 2016
1 parent 8bec170 commit bda365a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -230,7 +230,7 @@ private function initRepositoryPlugins($ctx){
/** @var AbstractAccessDriver $plugInstance */
$plugInstance = $this->getPluginByTypeName("access", $accessType);
if(!$plugInstance instanceof AbstractAccessDriver){
throw new RepositoryLoadException($repository, "Could not load plugin as an AccessDriver");
throw new RepositoryLoadException($repository, ["Could not load plugin as an accessDriver"]);
}

// TRIGGER BEFORE INIT META
Expand Down

0 comments on commit bda365a

Please sign in to comment.