Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Authentication/AuthenticationProviderInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Authentication; use Symfony\Component\HttpFoundation\Request; /** * Interface for authentication providers. */ interface AuthenticationProviderInterface { /** * Checks whether suitable authentication credentials are on the request. * * @param \Symfony\Component\HttpFoundation\Request $request * The request object. * * @return bool * TRUE if authentication credentials suitable for this provider are on the * request, FALSE otherwise. */ public function applies(Request $request); /** * Authenticates the user. * * @param \Symfony\Component\HttpFoundation\Request|null $request * The request object. * * @return \Drupal\Core\Session\AccountInterface|null * AccountInterface - in case of a successful authentication. * NULL - in case where authentication failed. */ public function authenticate(Request $request); }