<?php class NtakDate { public static function timestampToRfc3339(int $timestamp): string { return date('Y-m-d\TH:i:sP', $timestamp); } }