Browse Source

format attributes

main
yggverse 7 months ago
parent
commit
ae8cdbeeaf
  1. 8
      src/Client/Request.php

8
src/Client/Request.php

@ -121,10 +121,10 @@ class Request @@ -121,10 +121,10 @@ class Request
}
public function getResponse(
int $timeout = 30, // socket timeout, useful for offline resources
?int $limit = null, // content length, null for unlimited
?int &$length = 0, // initial response length, do not change without special needs
?int &$code = null, // error code for debug
int $timeout = 30, // socket timeout, useful for offline resources
?int $limit = null, // content length, null for unlimited
?int &$length = 0, // initial response length, do not change without special needs
?int &$code = null, // error code for debug
?string &$message = null, // error message for debug
string &$response = '' // response init, also returning by this method
): ?string

Loading…
Cancel
Save