-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Request.php
99 lines (88 loc) · 2.16 KB
/
Request.php
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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\BrowserKit;
/**
* @author Fabien Potencier <[email protected]>
*/
class Request
{
/**
* @param string $uri The request URI
* @param string $method The HTTP method request
* @param array $parameters The request parameters
* @param array $files An array of uploaded files
* @param array $cookies An array of cookies
* @param array $server An array of server parameters
* @param string|null $content The raw body data
*/
public function __construct(
protected string $uri,
protected string $method,
protected array $parameters = [],
protected array $files = [],
protected array $cookies = [],
protected array $server = [],
protected ?string $content = null,
) {
array_walk_recursive($parameters, static function (&$value) {
$value = (string) $value;
});
$this->parameters = $parameters;
}
/**
* Gets the request URI.
*/
public function getUri(): string
{
return $this->uri;
}
/**
* Gets the request HTTP method.
*/
public function getMethod(): string
{
return $this->method;
}
/**
* Gets the request parameters.
*/
public function getParameters(): array
{
return $this->parameters;
}
/**
* Gets the request server files.
*/
public function getFiles(): array
{
return $this->files;
}
/**
* Gets the request cookies.
*/
public function getCookies(): array
{
return $this->cookies;
}
/**
* Gets the request server parameters.
*/
public function getServer(): array
{
return $this->server;
}
/**
* Gets the request raw body data.
*/
public function getContent(): ?string
{
return $this->content;
}
}