17 lines
308 B
PHP
17 lines
308 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use App\Enums\AppModeEnum;
|
||
|
|
|
||
|
|
if (! function_exists('is_mode_app')) {
|
||
|
|
function is_mode_app(): bool
|
||
|
|
{
|
||
|
|
return AppModeEnum::current()->isApp();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
if (! function_exists('is_mode_saas')) {
|
||
|
|
function is_mode_saas(): bool
|
||
|
|
{
|
||
|
|
return AppModeEnum::current()->isSaas();
|
||
|
|
}
|
||
|
|
}
|