Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
aa
/
application
/
third_party
/
midtrans
/
midtrans-php
/
tests
✏️
Editing: VtTests.php
<?php namespace Midtrans; class VT_Tests { public static $stubHttp = false; public static $stubHttpResponse; public static $stubHttpStatus; public static $lastHttpRequest; public static function reset() { VT_Tests::$stubHttp = false; VT_Tests::$stubHttpResponse = null; VT_Tests::$lastHttpRequest = null; } public static function lastReqOptions() { $consts = array( CURLOPT_URL => "URL", CURLOPT_HTTPHEADER => "HTTPHEADER", CURLOPT_RETURNTRANSFER => "RETURNTRANSFER", CURLOPT_CAINFO => "CAINFO", CURLOPT_POST => "POST", CURLOPT_POSTFIELDS => "POSTFIELDS", CURLOPT_PROXY => "PROXY" ); $options = array(); foreach (VT_Tests::$lastHttpRequest["curl"] as $intValue => $value) { $key = $consts[$intValue] ? $consts[$intValue] : $intValue; $options[$key] = $value; } return $options; } }
💾 Save Changes
❌ Cancel