23
23
24
24
class Guzzle extends AbstractBrowser
25
25
{
26
+ /**
27
+ * @var array<string, mixed>
28
+ */
26
29
protected array $ requestOptions = [
27
30
'allow_redirects ' => false ,
28
31
'headers ' => [],
@@ -115,7 +118,7 @@ protected function createResponse(Psr7Response $psr7Response): BrowserKitRespons
115
118
$ contentType = 'text/html ' ;
116
119
}
117
120
118
- if (strpos ($ contentType , 'charset= ' ) === false ) {
121
+ if (str_contains ($ contentType , 'charset= ' ) === false ) {
119
122
if (preg_match ('#<meta[^>]+charset *= *[" \']?([a-zA-Z\-0-9]+)#i ' , $ body , $ matches )) {
120
123
$ contentType .= ';charset= ' . $ matches [1 ];
121
124
}
@@ -159,10 +162,10 @@ protected function createResponse(Psr7Response $psr7Response): BrowserKitRespons
159
162
protected function getAbsoluteUri (string $ uri ): string
160
163
{
161
164
$ baseUri = $ this ->client ->getConfig ('base_uri ' );
162
- if (strpos ($ uri , ':// ' ) === false && strpos ($ uri , '// ' ) !== 0 ) {
163
- if (strpos ($ uri , '/ ' ) === 0 ) {
165
+ if (str_contains ($ uri , ':// ' ) === false && ! str_starts_with ($ uri , '// ' )) {
166
+ if (str_starts_with ($ uri , '/ ' )) {
164
167
$ baseUriPath = $ baseUri ->getPath ();
165
- if (!empty ($ baseUriPath ) && strpos ($ uri , (string ) $ baseUriPath ) === 0 ) {
168
+ if (!empty ($ baseUriPath ) && str_starts_with ($ uri , (string ) $ baseUriPath )) {
166
169
$ uri = substr ($ uri , strlen ($ baseUriPath ));
167
170
}
168
171
@@ -178,9 +181,9 @@ protected function getAbsoluteUri(string $uri): string
178
181
return Uri::mergeUrls ((string )$ baseUri , $ uri );
179
182
}
180
183
181
- protected function doRequest ($ request )
184
+ protected function doRequest (object $ request )
182
185
{
183
- /** @var $request BrowserKitRequest **/
186
+ /** @var BrowserKitRequest $request **/
184
187
$ guzzleRequest = new Psr7Request (
185
188
$ request ->getMethod (),
186
189
$ request ->getUri (),
@@ -190,17 +193,17 @@ protected function doRequest($request)
190
193
$ options = $ this ->requestOptions ;
191
194
$ options ['cookies ' ] = $ this ->extractCookies ($ guzzleRequest ->getUri ()->getHost ());
192
195
$ multipartData = $ this ->extractMultipartFormData ($ request );
193
- if (! empty ( $ multipartData) ) {
196
+ if ($ multipartData !== [] ) {
194
197
$ options ['multipart ' ] = $ multipartData ;
195
198
}
196
199
197
200
$ formData = $ this ->extractFormData ($ request );
198
- if (empty ( $ multipartData) && $ formData ) {
201
+ if ($ multipartData === [] && $ formData ) {
199
202
$ options ['form_params ' ] = $ formData ;
200
203
}
201
204
202
205
try {
203
- if (null !== $ this ->awsCredentials ) {
206
+ if ($ this ->awsCredentials instanceof AwsCredentials ) {
204
207
$ response = $ this ->client ->send ($ this ->awsSignature ->signRequest ($ guzzleRequest , $ this ->awsCredentials ), $ options );
205
208
} else {
206
209
$ response = $ this ->client ->send ($ guzzleRequest , $ options );
@@ -213,6 +216,7 @@ protected function doRequest($request)
213
216
$ response = $ exception ->getResponse ();
214
217
}
215
218
219
+ // @phpstan-ignore-next-line
216
220
return $ this ->createResponse ($ response );
217
221
}
218
222
@@ -227,7 +231,7 @@ protected function extractHeaders(BrowserKitRequest $request): array
227
231
$ contentHeaders = ['Content-Length ' => true , 'Content-Md5 ' => true , 'Content-Type ' => true ];
228
232
foreach ($ server as $ header => $ val ) {
229
233
$ header = html_entity_decode (implode ('- ' , array_map ('ucfirst ' , explode ('- ' , strtolower (str_replace ('_ ' , '- ' , $ header ))))), ENT_NOQUOTES );
230
- if (strpos ($ header , 'Http- ' ) === 0 ) {
234
+ if (str_starts_with ($ header , 'Http- ' )) {
231
235
$ headers [substr ($ header , 5 )] = $ val ;
232
236
} elseif (isset ($ contentHeaders [$ header ])) {
233
237
$ headers [$ header ] = $ val ;
@@ -237,6 +241,9 @@ protected function extractHeaders(BrowserKitRequest $request): array
237
241
return $ headers ;
238
242
}
239
243
244
+ /**
245
+ * @return array<int, mixed>|null
246
+ */
240
247
protected function extractFormData (BrowserKitRequest $ browserKitRequest ): ?array
241
248
{
242
249
if (!in_array (strtoupper ($ browserKitRequest ->getMethod ()), ['POST ' , 'PUT ' , 'PATCH ' , 'DELETE ' ])) {
@@ -257,14 +264,17 @@ protected function extractFormData(BrowserKitRequest $browserKitRequest): ?array
257
264
return $ browserKitRequest ->getParameters ();
258
265
}
259
266
260
- protected function extractMultipartFormData (BrowserKitRequest $ browserKitRequest )
267
+ /**
268
+ * @return array<string, mixed>
269
+ */
270
+ protected function extractMultipartFormData (BrowserKitRequest $ browserKitRequest ): array
261
271
{
262
272
if (!in_array (strtoupper ($ browserKitRequest ->getMethod ()), ['POST ' , 'PUT ' , 'PATCH ' ])) {
263
273
return [];
264
274
}
265
275
266
276
$ parts = $ this ->mapFiles ($ browserKitRequest ->getFiles ());
267
- if (empty ( $ parts) ) {
277
+ if ($ parts === [] ) {
268
278
return [];
269
279
}
270
280
@@ -275,11 +285,14 @@ protected function extractMultipartFormData(BrowserKitRequest $browserKitRequest
275
285
return $ parts ;
276
286
}
277
287
278
- protected function formatMultipart ($ parts , $ key , $ value )
288
+ /**
289
+ * @return array<string, mixed>
290
+ */
291
+ protected function formatMultipart (mixed $ parts , string $ key , mixed $ value ): array
279
292
{
280
293
if (is_array ($ value )) {
281
294
foreach ($ value as $ subKey => $ subValue ) {
282
- $ parts = array_merge ($ this ->formatMultipart ([], $ key. sprintf ('[%s] ' , $ subKey ), $ subValue ), $ parts );
295
+ $ parts = array_merge ($ this ->formatMultipart ([], $ key . sprintf ('[%s] ' , $ subKey ), $ subValue ), $ parts );
283
296
}
284
297
285
298
return $ parts ;
@@ -289,7 +302,11 @@ protected function formatMultipart($parts, $key, $value)
289
302
return $ parts ;
290
303
}
291
304
292
- protected function mapFiles ($ requestFiles , $ arrayName = '' ): array
305
+ /**
306
+ * @param array<int, mixed> $requestFiles
307
+ * @return array<int, mixed>
308
+ */
309
+ protected function mapFiles (array $ requestFiles , ?string $ arrayName = '' ): array
293
310
{
294
311
$ files = [];
295
312
foreach ($ requestFiles as $ name => $ info ) {
@@ -329,7 +346,7 @@ protected function mapFiles($requestFiles, $arrayName = ''): array
329
346
return $ files ;
330
347
}
331
348
332
- protected function extractCookies ($ host ): GuzzleCookieJar
349
+ protected function extractCookies (string $ host ): GuzzleCookieJar
333
350
{
334
351
$ jar = [];
335
352
$ cookies = $ this ->getCookieJar ()->all ();
@@ -345,7 +362,7 @@ protected function extractCookies($host): GuzzleCookieJar
345
362
return new GuzzleCookieJar (false , $ jar );
346
363
}
347
364
348
- public static function createHandler ($ handler ): GuzzleHandlerStack
365
+ public static function createHandler (mixed $ handler ): GuzzleHandlerStack
349
366
{
350
367
if ($ handler instanceof GuzzleHandlerStack) {
351
368
return $ handler ;
@@ -360,7 +377,7 @@ public static function createHandler($handler): GuzzleHandlerStack
360
377
}
361
378
362
379
if (is_string ($ handler ) && class_exists ($ handler )) {
363
- return GuzzleHandlerStack::create (new $ handler );
380
+ return GuzzleHandlerStack::create (new $ handler() );
364
381
}
365
382
366
383
if (is_callable ($ handler )) {
@@ -370,7 +387,10 @@ public static function createHandler($handler): GuzzleHandlerStack
370
387
return GuzzleHandlerStack::create ();
371
388
}
372
389
373
- public function setAwsAuth ($ config ): void
390
+ /**
391
+ * @param array<string, mixed> $config
392
+ */
393
+ public function setAwsAuth (array $ config ): void
374
394
{
375
395
$ this ->awsCredentials = new AwsCredentials ($ config ['key ' ], $ config ['secret ' ]);
376
396
$ this ->awsSignature = new AwsSignatureV4 ($ config ['service ' ], $ config ['region ' ]);
0 commit comments