Skip to content
Snippets Groups Projects
Commit 08d938b2 authored by Robert Lange's avatar Robert Lange Committed by Dorian Merz
Browse files

refs #17876 [master] prevent notices caused by method referenced return value in finc bootstrapper

parent 8183e706
Branches
Tags
No related merge requests found
...@@ -74,8 +74,9 @@ class Bootstrapper extends \VuFind\Bootstrapper ...@@ -74,8 +74,9 @@ class Bootstrapper extends \VuFind\Bootstrapper
return; return;
} }
$exceptionArray = explode('\\', get_class($e->getParam('exception')));
$exceptionName = end( $exceptionName = end(
explode('\\', get_class($e->getParam('exception'))) $exceptionArray
); );
$resolver = $e->getApplication() $resolver = $e->getApplication()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment