ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
class.ilECSAuthStrategy.php
Go to the documentation of this file.
1<?php
2
18declare(strict_types=1);
19
20abstract class ilECSAuthStrategy
21{
22 abstract public function isActive(): bool;
23
24 abstract public function getName(): string;
25
26 abstract public function handleLogin(string $redirection_target): void;
27}
handleLogin(string $redirection_target)