interface for saml config (#3249)

This commit is contained in:
Kevin Papst
2022-04-05 17:49:41 +02:00
committed by GitHub
parent f2a8cf0930
commit 2ca3a3f7db
4 changed files with 30 additions and 5 deletions

View File

@@ -0,0 +1,25 @@
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Configuration;
interface SamlConfigurationInterface
{
public function isActivated(): bool;
public function getTitle(): string;
public function getAttributeMapping(): array;
public function getRolesAttribute(): ?string;
public function getRolesMapping(): array;
public function getConnection(): array;
}