in app/classes/ReleaseInsights/Utils.php [83:106]
public static function getDate(string $format = 'Ymd'): string
{
// No date provided by the http call, return Today
if (! isset($_GET['date'])) {
return date($format);
}
// Magical 'today' value
if ($_GET['date'] === 'today') {
return date($format);
}
// Cast user provided date to an int for security
$date = Utils::secureText($_GET['date']);
$d = DateTime::createFromFormat($format, $date);
// Date is invalid, return Today
if (! $d) {
return date($format);
}
return $d->format($format);
}