PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.2 3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 All 260 releases
wpfunnels / vendor / posthog / posthog-php / test / MockedHttpClient.php

MockedHttpClient.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at vendor/posthog/posthog-php/test/MockedHttpClient.php

20 lines 503 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace PostHog\Test;
4
5 use PostHog\HttpResponse;
6 use PostHog\Test\Assets\MockedResponses;
7
8 class MockedHttpClient extends \PostHog\HttpClient
9 {
10 public function sendRequest(string $path, ?string $payload, array $extraHeaders = []): HttpResponse
11 {
12 if (!isset($this->calls)) {
13 $this->calls = array();
14 }
15 array_push($this->calls, array("path" => $path, "payload" => $payload));
16
17 return parent::sendRequest($path, $payload, $extraHeaders);
18 }
19 }
20