diff --git a/src/Ipv6.php b/src/Ipv6.php index a01b640e6..5885b527b 100644 --- a/src/Ipv6.php +++ b/src/Ipv6.php @@ -90,7 +90,7 @@ public static function uncompress($ip) { * Example: FF01:0:0:0:0:0:0:101 -> FF01::101 * 0:0:0:0:0:0:0:1 -> ::1 * - * @see \WpOrg\Requests\IPv6::uncompress() + * @see \WpOrg\Requests\Ipv6::uncompress() * * @param string $ip An IPv6 address * @return string The compressed IPv6 address diff --git a/src/Iri.php b/src/Iri.php index 21f5e9045..244578d34 100644 --- a/src/Iri.php +++ b/src/Iri.php @@ -53,7 +53,7 @@ * @link http://hg.gsnedders.com/iri/ * * @property string $iri IRI we're working with - * @property-read string $uri IRI in URI form, {@see \WpOrg\Requests\IRI::to_uri()} + * @property-read string $uri IRI in URI form, {@see \WpOrg\Requests\Iri::to_uri()} * @property string $scheme Scheme part of the IRI * @property string $authority Authority part, formatted for a URI (userinfo + host + port) * @property string $iauthority Authority part of the IRI (userinfo + host + port) @@ -1000,7 +1000,7 @@ protected function set_fragment($ifragment) { /** * Convert an IRI to a URI (or parts thereof) * - * @param string|bool $iri IRI to convert (or false from {@see \WpOrg\Requests\IRI::get_iri()}) + * @param string|bool $iri IRI to convert (or false from {@see \WpOrg\Requests\Iri::get_iri()}) * @return string|false URI if IRI is valid, false otherwise. */ protected function to_uri($iri) { diff --git a/src/Proxy/Http.php b/src/Proxy/Http.php index 77d7cb5da..012211a89 100644 --- a/src/Proxy/Http.php +++ b/src/Proxy/Http.php @@ -92,10 +92,10 @@ public function __construct($args = null) { * Register the necessary callbacks * * @since 1.6 - * @see \WpOrg\Requests\Proxy\HTTP::curl_before_send() - * @see \WpOrg\Requests\Proxy\HTTP::fsockopen_remote_socket() - * @see \WpOrg\Requests\Proxy\HTTP::fsockopen_remote_host_path() - * @see \WpOrg\Requests\Proxy\HTTP::fsockopen_header() + * @see \WpOrg\Requests\Proxy\Http::curl_before_send() + * @see \WpOrg\Requests\Proxy\Http::fsockopen_remote_socket() + * @see \WpOrg\Requests\Proxy\Http::fsockopen_remote_host_path() + * @see \WpOrg\Requests\Proxy\Http::fsockopen_header() * @param \WpOrg\Requests\Hooks $hooks Hook system */ public function register(Hooks $hooks) {