23 lines
417 B
PHP
23 lines
417 B
PHP
<?php
|
|
|
|
namespace KTXC\Models\Tenant;
|
|
|
|
use KTXF\Json\JsonSerializableObject;
|
|
|
|
/**
|
|
* Tenant Configuration
|
|
*/
|
|
class TenantAuthentication extends JsonSerializableObject
|
|
{
|
|
protected array $providers = [];
|
|
protected int $methodsMinimal = 1;
|
|
|
|
public function providers(): array {
|
|
return $this->providers;
|
|
}
|
|
|
|
public function methodsMinimal(): int {
|
|
return $this->methodsMinimal;
|
|
}
|
|
}
|