| 1 | <?php |
||
| 14 | class SAMLHelper extends Object |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | public static $dependencies = [ |
||
| 20 | 'SAMLConfService' => '%$SilverStripe\\ActiveDirectory\\Services\\SAMLConfiguration', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var SAMLConfiguration |
||
| 25 | */ |
||
| 26 | public $SAMLConfService; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return OneLogin_Saml2_Auth |
||
| 30 | */ |
||
| 31 | public function getSAMLauth() |
||
| 36 | } |
||
| 37 |