You are here

public function TestAuthenticationProvider::authenticate in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Authentication/AuthenticationCollectorTest.php \Drupal\Tests\Core\Authentication\TestAuthenticationProvider::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/tests/Drupal/Tests/Core/Authentication/AuthenticationCollectorTest.php, line 91
Contains \Drupal\Tests\Core\Authentication\AuthenticationCollectorTest.

Class

TestAuthenticationProvider
A simple provider for unit testing AuthenticationCollector.

Namespace

Drupal\Tests\Core\Authentication

Code

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