Browse
For agents
About
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress
/
9.1.3
WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress
v9.1.3
Switch version
9.1.3
9.1.2
9.1.1
9.1.0
9.0.3
9.0.2
9.0.1
9.0.0
8.5.79
8.5.78
8.5.77
8.5.76
8.5.75
8.5.74
8.5.73
8.5.72
8.5.71
8.5.70
8.5.69
8.5.68
8.5.35
8.5.36
8.5.37
8.5.38
8.5.39
All 222 releases
Overview
Code
wpvr
/
vendor
/
posthog
/
posthog-php
/
lib
/
HttpResponse.php
HttpResponse.php
in WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress 9.1.3, at vendor/posthog/posthog-php/lib/HttpResponse.php
32 lines
493 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
PostHog
;
4
5
class
HttpResponse
6
{
7
private
$
response
;
8
private
$
responseCode
;
9
10
public
function
__construct
(
$
response
,
$
responseCode
)
11
{
12
$
this
->
response
=
$
response
;
13
$
this
->
responseCode
=
$
responseCode
;
14
}
15
16
/**
17
*
@return
mixed
18
*/
19
public
function
getResponse
(
)
20
{
21
return
$
this
->
response
;
22
}
23
24
/**
25
*
@return
mixed
26
*/
27
public
function
getResponseCode
(
)
28
{
29
return
$
this
->
responseCode
;
30
}
31
}
32