You are here

public function ShibAuthController::index in Shibboleth Authentication 8.4

Index.

Return value

string Return Hello string.

1 string reference to 'ShibAuthController::index'
shib_auth.routing.yml in ./shib_auth.routing.yml
shib_auth.routing.yml

File

src/Controller/ShibAuthController.php, line 24
Contains Drupal\shib_auth\Controller\ShibAuthController.

Class

ShibAuthController
Class ShibAuthController.

Namespace

Drupal\shib_auth\Controller

Code

public function index() {
  return [
    '#type' => 'markup',
    '#markup' => $this
      ->t('Implement method: index'),
  ];
}