Skip to content
Snippets Groups Projects
Commit 0d0f9792 authored by Demian Katz's avatar Demian Katz
Browse files

Remove useless return statements.

parent 163b359a
No related merge requests found
...@@ -109,7 +109,6 @@ class ShibbolethLogoutNotificationController extends AbstractBase ...@@ -109,7 +109,6 @@ class ShibbolethLogoutNotificationController extends AbstractBase
$sessionManager = $this->serviceLocator->get('VuFind\SessionManager'); $sessionManager = $this->serviceLocator->get('VuFind\SessionManager');
$handler = $sessionManager->getSaveHandler(); $handler = $sessionManager->getSaveHandler();
$handler->destroy($row['session_id']); $handler->destroy($row['session_id']);
return;
} }
/** /**
......
...@@ -2466,7 +2466,6 @@ class DummyILS extends \VuFind\ILS\Driver\AbstractBase ...@@ -2466,7 +2466,6 @@ class DummyILS extends \VuFind\ILS\Driver\AbstractBase
*/ */
public function init() public function init()
{ {
return;
} }
/** /**
......
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