14 lines
303 B
PHP
14 lines
303 B
PHP
<?php
|
|
|
|
namespace App\Application\Reports;
|
|
|
|
final class ReportFlowDecider
|
|
{
|
|
public function shouldUseNewArchitecture(string $reportType = 'daily'): bool
|
|
{
|
|
$enabledTypes = config('reports.use_new_arch.report_types', []);
|
|
|
|
return in_array($reportType, $enabledTypes, true);
|
|
}
|
|
}
|