Initial Version
This commit is contained in:
22
core/lib/Models/Tenant/TenantSecurity.php
Normal file
22
core/lib/Models/Tenant/TenantSecurity.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user