php-tenant/Features/BetaFeatures.php
Snider 86dbf4e763 fix: namespace to Core\Mod\Tenant, restructure package
- Changed namespace from Core\Core\Tenant to Core\Mod\Tenant
- Moved src/ contents to root
- Removed Host UK extension files (admin.php, MemberManager, TeamManager)
- Fixed composer.json autoload paths
2026-01-27 00:58:42 +00:00

42 lines
755 B
PHP

<?php
declare(strict_types=1);
namespace Core\Mod\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
}
}