Skip to content

Commit 2d50a97

Browse files
committed
🚿
1 parent 53e3207 commit 2d50a97

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

examples/curl_multi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

src/CurlClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use const CURLE_OK;
1818

1919
/**
20-
* A simple cURL http client
20+
* A "simple" cURL http client
2121
*/
2222
class CurlClient extends HTTPClientAbstract{
2323

src/CurlHandle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/HTTPOptionsTrait.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)