11
11
12
12
interface RequestFactoryInterface
13
13
{
14
-
15
14
public function createRequest (string $ method , $ uri ): RequestInterface ;
16
15
}
17
16
18
17
// file: vendor/psr/http-factory/src/ResponseFactoryInterface.php
19
18
20
19
interface ResponseFactoryInterface
21
20
{
22
-
23
21
public function createResponse (int $ code = 200 , string $ reasonPhrase = '' ): ResponseInterface ;
24
22
}
25
23
26
24
// file: vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
27
25
28
26
interface ServerRequestFactoryInterface
29
27
{
30
-
31
28
public function createServerRequest (string $ method , $ uri , array $ serverParams = []): ServerRequestInterface ;
32
29
}
33
30
34
31
// file: vendor/psr/http-factory/src/StreamFactoryInterface.php
35
32
36
33
interface StreamFactoryInterface
37
34
{
38
-
39
35
public function createStream (string $ content = '' ): StreamInterface ;
40
36
41
37
public function createStreamFromFile (string $ filename , string $ mode = 'r ' ): StreamInterface ;
@@ -47,7 +43,6 @@ public function createStreamFromResource($resource): StreamInterface;
47
43
48
44
interface UploadedFileFactoryInterface
49
45
{
50
-
51
46
public function createUploadedFile (
52
47
StreamInterface $ stream ,
53
48
int $ size = null ,
@@ -61,15 +56,13 @@ public function createUploadedFile(
61
56
62
57
interface UriFactoryInterface
63
58
{
64
-
65
59
public function createUri (string $ uri = '' ): UriInterface ;
66
60
}
67
61
68
62
// file: vendor/psr/http-message/src/MessageInterface.php
69
63
70
64
interface MessageInterface
71
65
{
72
-
73
66
public function getProtocolVersion ();
74
67
75
68
public function withProtocolVersion ($ version );
@@ -97,7 +90,6 @@ public function withBody(StreamInterface $body);
97
90
98
91
interface RequestInterface extends MessageInterface
99
92
{
100
-
101
93
public function getRequestTarget ();
102
94
103
95
public function withRequestTarget ($ requestTarget );
@@ -115,7 +107,6 @@ public function withUri(UriInterface $uri, $preserveHost = false);
115
107
116
108
interface ResponseInterface extends MessageInterface
117
109
{
118
-
119
110
public function getStatusCode ();
120
111
121
112
public function withStatus ($ code , $ reasonPhrase = '' );
@@ -127,7 +118,6 @@ public function getReasonPhrase();
127
118
128
119
interface ServerRequestInterface extends RequestInterface
129
120
{
130
-
131
121
public function getServerParams ();
132
122
133
123
public function getCookieParams ();
@@ -159,7 +149,6 @@ public function withoutAttribute($name);
159
149
160
150
interface StreamInterface
161
151
{
162
-
163
152
public function __toString ();
164
153
165
154
public function close ();
@@ -195,7 +184,6 @@ public function getMetadata($key = null);
195
184
196
185
interface UploadedFileInterface
197
186
{
198
-
199
187
public function getStream ();
200
188
201
189
public function moveTo ($ targetPath );
@@ -213,7 +201,6 @@ public function getClientMediaType();
213
201
214
202
interface UriInterface
215
203
{
216
-
217
204
public function getScheme ();
218
205
219
206
public function getAuthority ();
@@ -251,15 +238,13 @@ public function __toString();
251
238
252
239
interface RequestHandlerInterface
253
240
{
254
-
255
241
public function handle (ServerRequestInterface $ request ): ResponseInterface ;
256
242
}
257
243
258
244
// file: vendor/psr/http-server-middleware/src/MiddlewareInterface.php
259
245
260
246
interface MiddlewareInterface
261
247
{
262
-
263
248
public function process (ServerRequestInterface $ request , RequestHandlerInterface $ handler ): ResponseInterface ;
264
249
}
265
250
@@ -325,7 +310,6 @@ public function createServerRequest(string $method, $uri, array $serverParams =
325
310
326
311
trait MessageTrait
327
312
{
328
-
329
313
private $ headers = [];
330
314
331
315
private $ headerNames = [];
@@ -518,7 +502,6 @@ public function __construct(string $method, $uri, array $headers = [], $body = n
518
502
519
503
trait RequestTrait
520
504
{
521
-
522
505
private $ method ;
523
506
524
507
private $ requestTarget ;
@@ -819,7 +802,6 @@ public function withoutAttribute($attribute): self
819
802
820
803
final class Stream implements StreamInterface
821
804
{
822
-
823
805
private $ stream ;
824
806
825
807
private $ seekable ;
@@ -1046,7 +1028,6 @@ public function getMetadata($key = null)
1046
1028
1047
1029
final class UploadedFile implements UploadedFileInterface
1048
1030
{
1049
-
1050
1031
private const ERRORS = [
1051
1032
\UPLOAD_ERR_OK => 1 ,
1052
1033
\UPLOAD_ERR_INI_SIZE => 1 ,
@@ -1675,7 +1656,6 @@ private function createUriFromArray(array $server): UriInterface
1675
1656
1676
1657
interface ServerRequestCreatorInterface
1677
1658
{
1678
-
1679
1659
public function fromGlobals (): ServerRequestInterface ;
1680
1660
1681
1661
public function fromArrays (
@@ -6098,7 +6078,6 @@ public function jsonSerialize()
6098
6078
6099
6079
class ListDocument implements \JsonSerializable
6100
6080
{
6101
-
6102
6081
private $ records ;
6103
6082
6104
6083
private $ results ;
@@ -6139,7 +6118,6 @@ public function jsonSerialize()
6139
6118
6140
6119
class ColumnIncluder
6141
6120
{
6142
-
6143
6121
private function isMandatory (string $ tableName , string $ columnName , array $ params ): bool
6144
6122
{
6145
6123
return isset ($ params ['mandatory ' ]) && in_array ($ tableName . ". " . $ columnName , $ params ['mandatory ' ]);
@@ -6203,7 +6181,6 @@ public function getValues(ReflectedTable $table, bool $primaryTable, /* object *
6203
6181
6204
6182
class ErrorCode
6205
6183
{
6206
-
6207
6184
private $ code ;
6208
6185
private $ message ;
6209
6186
private $ status ;
@@ -6285,7 +6262,6 @@ public function getStatus(): int
6285
6262
6286
6263
class FilterInfo
6287
6264
{
6288
-
6289
6265
private function addConditionFromFilterPath (PathTree $ conditions , array $ path , ReflectedTable $ table , array $ params )
6290
6266
{
6291
6267
$ key = 'filter ' . implode ('' , $ path );
@@ -6349,7 +6325,6 @@ public function __construct(array $pkValues, array $fkValues)
6349
6325
6350
6326
class OrderingInfo
6351
6327
{
6352
-
6353
6328
public function getColumnOrdering (ReflectedTable $ table , array $ params ): array
6354
6329
{
6355
6330
$ fields = array ();
@@ -6394,7 +6369,6 @@ public function getDefaultColumnOrdering(ReflectedTable $table): array
6394
6369
6395
6370
class PaginationInfo
6396
6371
{
6397
-
6398
6372
public $ DEFAULT_PAGE_SIZE = 20 ;
6399
6373
6400
6374
public function hasPage (array $ params ): bool
@@ -6661,7 +6635,6 @@ public function _list(string $tableName, array $params): ListDocument
6661
6635
6662
6636
class RelationJoiner
6663
6637
{
6664
-
6665
6638
private $ reflection ;
6666
6639
private $ columns ;
6667
6640
0 commit comments