File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* cURL multi example, fetch data from the GUildWars2 items API
4
- * @link https://wiki.guildwars2.com/wiki/API:2/items
4
+ * @see https://wiki.guildwars2.com/wiki/API:2/items
5
5
*
6
6
* @filesource curl_multi.php
7
7
* @created 08.11.2019
Original file line number Diff line number Diff line change 17
17
use const CURLE_OK ;
18
18
19
19
/**
20
- * A simple cURL http client
20
+ * A " simple" cURL http client
21
21
*/
22
22
class CurlClient extends HTTPClientAbstract{
23
23
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ private function setRequestOptions():void{
333
333
}
334
334
335
335
/**
336
- * @link https://php.watch/articles/php-curl-security-hardening
336
+ * @see https://php.watch/articles/php-curl-security-hardening
337
337
*/
338
338
public function init ():CH |null {
339
339
Original file line number Diff line number Diff line change @@ -40,24 +40,24 @@ trait HTTPOptionsTrait{
40
40
*
41
41
* (if not configured in php.ini or available in a default path via the `ca-certificates` package)
42
42
*
43
- * @link https://curl.se/docs/caextract.html
44
- * @link https://curl.se/ca/cacert.pem
45
- * @link https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt
43
+ * @see https://curl.se/docs/caextract.html
44
+ * @see https://curl.se/ca/cacert.pem
45
+ * @see https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt
46
46
*/
47
47
protected string |null $ ca_info = null ;
48
48
49
49
/**
50
50
* see CURLOPT_SSL_VERIFYPEER
51
51
* requires either HTTPOptions::$ca_info or a properly working system CA file
52
52
*
53
- * @link https://php.net/manual/function.curl-setopt.php
53
+ * @see https://php.net/manual/function.curl-setopt.php
54
54
*/
55
55
protected bool $ ssl_verifypeer = true ;
56
56
57
57
/**
58
58
* options for the curl multi instance
59
59
*
60
- * @link https://www.php.net/manual/function.curl-multi-setopt.php
60
+ * @see https://www.php.net/manual/function.curl-multi-setopt.php
61
61
*/
62
62
protected array $ curl_multi_options = [];
63
63
You can’t perform that action at this time.
0 commit comments