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 11<?php
22/**
33 * 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
55 *
66 * @filesource curl_multi.php
77 * @created 08.11.2019
Original file line number Diff line number Diff line change 1717use const CURLE_OK ;
1818
1919/**
20- * A simple cURL http client
20+ * A " simple" cURL http client
2121 */
2222class CurlClient extends HTTPClientAbstract{
2323
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ private function setRequestOptions():void{
333333 }
334334
335335 /**
336- * @link https://php.watch/articles/php-curl-security-hardening
336+ * @see https://php.watch/articles/php-curl-security-hardening
337337 */
338338 public function init ():CH |null {
339339
Original file line number Diff line number Diff line change @@ -40,24 +40,24 @@ trait HTTPOptionsTrait{
4040 *
4141 * (if not configured in php.ini or available in a default path via the `ca-certificates` package)
4242 *
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
4646 */
4747 protected string |null $ ca_info = null ;
4848
4949 /**
5050 * see CURLOPT_SSL_VERIFYPEER
5151 * requires either HTTPOptions::$ca_info or a properly working system CA file
5252 *
53- * @link https://php.net/manual/function.curl-setopt.php
53+ * @see https://php.net/manual/function.curl-setopt.php
5454 */
5555 protected bool $ ssl_verifypeer = true ;
5656
5757 /**
5858 * options for the curl multi instance
5959 *
60- * @link https://www.php.net/manual/function.curl-multi-setopt.php
60+ * @see https://www.php.net/manual/function.curl-multi-setopt.php
6161 */
6262 protected array $ curl_multi_options = [];
6363
You can’t perform that action at this time.
0 commit comments