public function __construct()

in app/classes/ReleaseInsights/Data.php [21:29]


    public function __construct(
        private readonly string $pd_url = URL::ProductDetails->value,
        public int $cache_duration = 900 // 15 minutes
    ) {
        $this->release_owners  = include DATA . 'release_owners.php';
        $this->future_releases = include DATA . 'upcoming_releases.php';
        $this->wellness_days   = include DATA . 'wellness_days.php';
        $this->chemspills      = include DATA . 'chemspill_releases.php';
    }