23 lines
349 B
PHP
23 lines
349 B
PHP
<?php
|
|
|
|
namespace KTXC\Models\Tenant;
|
|
|
|
use KTXF\Json\JsonSerializableObject;
|
|
|
|
/**
|
|
* Tenant Configuration
|
|
*/
|
|
class TenantSecurity extends JsonSerializableObject
|
|
{
|
|
protected string $code = '';
|
|
|
|
public function __construct()
|
|
{
|
|
$this->code = uniqid();
|
|
}
|
|
|
|
public function code(): string {
|
|
return $this->code;
|
|
}
|
|
}
|