class TestAuthGlobal

Same name in other branches
  1. 9 core/modules/rest/tests/modules/rest_test/src/Authentication/Provider/TestAuthGlobal.php \Drupal\rest_test\Authentication\Provider\TestAuthGlobal
  2. 8.9.x core/modules/rest/tests/modules/rest_test/src/Authentication/Provider/TestAuthGlobal.php \Drupal\rest_test\Authentication\Provider\TestAuthGlobal
  3. 11.x core/modules/rest/tests/modules/rest_test/src/Authentication/Provider/TestAuthGlobal.php \Drupal\rest_test\Authentication\Provider\TestAuthGlobal

Global authentication provider for testing purposes.

Hierarchy

  • class \Drupal\rest_test\Authentication\Provider\TestAuthGlobal implements \Drupal\Core\Authentication\AuthenticationProviderInterface

Expanded class hierarchy of TestAuthGlobal

1 string reference to 'TestAuthGlobal'
rest_test.services.yml in core/modules/rest/tests/modules/rest_test/rest_test.services.yml
core/modules/rest/tests/modules/rest_test/rest_test.services.yml
1 service uses TestAuthGlobal
rest_test.authentication.test_auth_global in core/modules/rest/tests/modules/rest_test/rest_test.services.yml
Drupal\rest_test\Authentication\Provider\TestAuthGlobal

File

core/modules/rest/tests/modules/rest_test/src/Authentication/Provider/TestAuthGlobal.php, line 11

Namespace

Drupal\rest_test\Authentication\Provider
View source
class TestAuthGlobal implements AuthenticationProviderInterface {
    
    /**
     * {@inheritdoc}
     */
    public function applies(Request $request) {
        return $request->headers
            ->has('REST-test-auth-global');
    }
    
    /**
     * {@inheritdoc}
     */
    public function authenticate(Request $request) {
        return NULL;
    }

}

Members

Title Sort descending Modifiers Object type Summary
TestAuthGlobal::applies public function
TestAuthGlobal::authenticate public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.