This commit is contained in:
Yuri Kuznetsov
2024-02-26 15:05:20 +02:00
parent 0ec428b1ed
commit a201f61eeb
5 changed files with 5 additions and 15 deletions
@@ -54,7 +54,7 @@ class EntryPointManager
$className = $this->getClassName($name);
if (!$className) {
throw new NotFoundSilent("Entry point '{$name}' not found.");
throw new NotFoundSilent("Entry point '$name' not found.");
}
$noAuth = false;
@@ -79,7 +79,7 @@ class EntryPointManager
$className = $this->getClassName($name);
if (!$className) {
throw new NotFoundSilent("Entry point '{$name}' not found.");
throw new NotFoundSilent("Entry point '$name' not found.");
}
$entryPoint = $this->injectableFactory->create($className);