php-tenant/Features/BetaFeatures.php
Snider d0ad2737cb refactor: rename namespace from Core\Mod\Tenant to Core\Tenant
Simplifies the namespace hierarchy by removing the intermediate Mod
segment. Updates all 118 files including models, services, controllers,
middleware, tests, and composer.json autoload configuration.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 16:30:46 +00:00

42 lines
751 B
PHP

<?php
declare(strict_types=1);
namespace Core\Tenant\Features;
use Illuminate\Support\Lottery;
class BetaFeatures
{
/**
* New dashboard design.
*/
public static function newDashboard(): bool
{
return false; // Enable when ready
}
/**
* AI-powered content suggestions.
*/
public static function aiSuggestions(): bool
{
return false;
}
/**
* Real-time notifications via Reverb.
*/
public static function realtimeNotifications(): bool
{
return true; // Enabled
}
/**
* Advanced analytics dashboard.
*/
public static function advancedAnalytics(): bool
{
return Lottery::odds(1, 10)->choose(); // 10% rollout
}
}