initialize(); $ctx = 0; if (isset($argv[1]) && $argv[1] !== '' && ctype_digit((string) $argv[1])) { $ctx = (int) $argv[1]; } $r = OutboundPushHookService::sendTestPing($ctx); echo json_encode($r, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) . PHP_EOL; exit(!empty($r['ok']) ? 0 : 2);