You are here

public function Auth::authenticate in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/tests/modules/early_translation_test/src/Auth.php \Drupal\early_translation_test\Auth::authenticate()

Authenticates the user.

Parameters

\Symfony\Component\HttpFoundation\Request|null $request: The request object.

Return value

\Drupal\Core\Session\AccountInterface|null AccountInterface - in case of a successful authentication. NULL - in case where authentication failed.

Overrides AuthenticationProviderInterface::authenticate

File

core/modules/locale/tests/modules/early_translation_test/src/Auth.php, line 46

Class

Auth
Test authentication provider.

Namespace

Drupal\early_translation_test

Code

public function authenticate(Request $request) {
  return NULL;
}