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

Renamed authmanager service to VuFind\AuthManager.

parent 0a893259
No related merge requests found
......@@ -314,7 +314,7 @@ $config = array(
},
),
'invokables' => array(
'authmanager' => 'VuFind\Auth\Manager',
'VuFind\AuthManager' => 'VuFind\Auth\Manager',
'cart' => 'VuFind\Cart',
'cachemanager' => 'VuFind\Cache\Manager',
'mailer' => 'VuFind\Mailer',
......
......@@ -152,7 +152,7 @@ class Bootstrap
register_shutdown_function(array($sessionManager, 'writeClose'));
// Make sure account credentials haven't expired:
$serviceManager->get('AuthManager')->checkForExpiredCredentials();
$serviceManager->get('VuFind\AuthManager')->checkForExpiredCredentials();
}
/**
......
......@@ -82,7 +82,7 @@ class AbstractBase extends AbstractActionController
*/
protected function getAuthManager()
{
return $this->getServiceLocator()->get('AuthManager');
return $this->getServiceLocator()->get('VuFind\AuthManager');
}
/**
......
......@@ -89,7 +89,7 @@ class Auth extends AbstractServiceLocator
*/
public function getManager()
{
return $this->getServiceLocator()->get('AuthManager');
return $this->getServiceLocator()->get('VuFind\AuthManager');
}
/**
......
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