class-otgs-installer-log.php
1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
class OTGS_Installer_Log {
private $time;
private $request_url;
private $request_args;
private $response;
private $component;
/**
* @return string
*/
public function get_time() {
return $this->time;
}
/**
* @param string $time
*
* @return $this
*/
public function set_time( $time ) {
$this->time = $time;
return $this;
}
/**
* @return string
*/
public function get_request_url() {
return $this->request_url;
}
/**
* @param string $request_url
*
* @return $this
*/
public function set_request_url( $request_url ) {
$this->request_url = $request_url;
return $this;
}
/**
* @return array
*/
public function get_request_args() {
return $this->request_args;
}
/**
* @param array $request_args
*
* @return $this
*/
public function set_request_args( $request_args ) {
$this->request_args = $request_args;
return $this;
}
/**
* @return string
*/
public function get_response() {
return $this->response;
}
/**
* @param string $response
*
* @return $this
*/
public function set_response( $response ) {
$this->response = $response;
return $this;
}
/**
* @return string
*/
public function get_component() {
return $this->component;
}
/**
* @param string $component
*
* @return $this
*/
public function set_component( $component ) {
$this->component = $component;
return $this;
}
}