-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathRequest.php
More file actions
133 lines (117 loc) · 2.86 KB
/
Request.php
File metadata and controls
133 lines (117 loc) · 2.86 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/*
* NOTICE OF LICENSE
*
* This source file is subject to the MIT License
* It is available through the world-wide-web at this URL:
* https://tldrlegal.com/license/mit-license
* If you are unable to obtain it through the world-wide-web, please send an email
* to support@buckaroo.nl so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please contact support@buckaroo.nl for more information.
*
* @copyright Copyright (c) Buckaroo B.V.
* @license https://tldrlegal.com/license/mit-license
*/
declare(strict_types=1);
namespace Buckaroo\Transaction\Request;
use ArrayAccess;
use Buckaroo\Resources\Arrayable;
use JsonSerializable;
class Request implements JsonSerializable, ArrayAccess, Arrayable
{
/**
* @var array
*/
protected array $data = [];
/**
* @var array
*/
protected array $headers = [];
/**
* @param $offset
* @param $value
* @return void
*/
public function offsetSet($offset, $value): void
{
if (is_null($offset)) {
$this->data[] = $value;
} else {
$this->data[$offset] = $value;
}
}
/** Implement ArrayAccess */
public function offsetExists($offset): bool
{
return isset($this->data[$offset]);
}
/** Implement ArrayAccess */
public function offsetUnset($offset): void
{
unset($this->data[$offset]);
}
/** Implement ArrayAccess */
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return isset($this->data[$offset]) ? $this->data[$offset] : null;
}
/** Implement JsonSerializable */
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->data;
}
/** Implement Arrayable */
public function toArray(): array
{
return $this->data;
}
/**
* @return string
*/
public function toJson(): string
{
return json_encode($this->toArray());
}
/**
* @param string $name
* @param string $value
*/
public function setHeader($name, $value)
{
$this->headers[strtolower($name)] = $value;
}
/**
* @param string $name
* @return string
*/
public function getHeader($name)
{
if (isset($this->headers[strtolower($name)])) {
return $this->headers[strtolower($name)];
}
return null;
}
/**
* @return array [ string ]
*/
public function getHeaders(): array
{
return array_map(function ($value, $key) {
return $key . ': ' . $value;
}, $this->headers);
}
/**
* @return array
*/
public function getData(): array
{
return $this->data;
}
}