Skip to content

Commit

Permalink
@link and @see tags should use https
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Oct 16, 2018
1 parent fcd86cf commit 890dcf4
Show file tree
Hide file tree
Showing 52 changed files with 1,580 additions and 1,547 deletions.
4 changes: 2 additions & 2 deletions Core/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ function property_exists ($class, $property) {}
* @param string $traitname Name of the trait to check
* @param bool $autoload [optional] Whether to autoload if not already loaded.
* @return boolean Returns TRUE if trait exists, FALSE if not, NULL in case of an error.
* @link http://www.php.net/manual/en/function.trait-exists.php
* @link https://secure.php.net/manual/en/function.trait-exists.php
* @since 5.4.0
*/
function trait_exists($traitname, $autoload ) {}
Expand Down Expand Up @@ -709,7 +709,7 @@ function get_declared_interfaces () {}
/**
* Returns an array of all declared traits
* @return array with names of all declared traits in values. Returns NULL in case of a failure.
* @link http://www.php.net/manual/en/function.get-declared-traits.php
* @link https://secure.php.net/manual/en/function.get-declared-traits.php
* @see class_uses()
* @since 5.4.0
*/
Expand Down
10 changes: 5 additions & 5 deletions Core/Core_c.php
Original file line number Diff line number Diff line change
Expand Up @@ -555,14 +555,14 @@ final public function getSeverity() { }
* Starting with PHP 5.4, this class has methods that allow further control of the anonymous function after it has been created.
* <p>Besides the methods listed here, this class also has an __invoke method.
* This is for consistency with other classes that implement calling magic, as this method is not used for calling the function.
* @link http://www.php.net/manual/en/class.closure.php
* @link https://secure.php.net/manual/en/class.closure.php
*/
final class Closure {

/**
* This method exists only to disallow instantiation of the Closure class.
* Objects of this class are created in the fashion described on the anonymous functions page.
* @link http://www.php.net/manual/en/closure.construct.php
* @link https://secure.php.net/manual/en/closure.construct.php
*/
private function __construct() { }

Expand All @@ -571,13 +571,13 @@ private function __construct() { }
* as this method is not used for calling the function.
* @param mixed $_ [optional]
* @return mixed
* @link http://www.php.net/manual/en/class.closure.php
* @link https://secure.php.net/manual/en/class.closure.php
*/
public function __invoke(...$_) { }

/**
* Duplicates the closure with a new bound object and class scope
* @link http://www.php.net/manual/en/closure.bindto.php
* @link https://secure.php.net/manual/en/closure.bindto.php
* @param object $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound.
* @param mixed $newscope The class scope to which associate the closure is to be associated, or 'static' to keep the current one.
* If an object is given, the type of the object will be used instead.
Expand All @@ -590,7 +590,7 @@ function bindTo($newthis, $newscope = 'static') { }
* This method is a static version of Closure::bindTo().
* See the documentation of that method for more information.
* @static
* @link http://www.php.net/manual/en/closure.bind.php
* @link https://secure.php.net/manual/en/closure.bind.php
* @param Closure $closure The anonymous functions to bind.
* @param object $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound.
* @param mixed $newscope The class scope to which associate the closure is to be associated, or 'static' to keep the current one.
Expand Down
2 changes: 1 addition & 1 deletion Reflection/Reflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,7 @@ public function isTemporary () {}
}

/**
* @link http://www.php.net/manual/en/class.reflectionzendextension.php
* @link https://secure.php.net/manual/en/class.reflectionzendextension.php
* @since 5.4.0
*/
class ReflectionZendExtension implements Reflector {
Expand Down
16 changes: 8 additions & 8 deletions SPL/SPL.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class UnexpectedValueException extends RuntimeException {

/**
* The EmptyIterator class for an empty iterator.
* @link https://www.php.net/manual/en/class.emptyiterator.php
* @link https://https://secure.php.net/manual/en/class.emptyiterator.php
*/
class EmptyIterator implements Iterator {

Expand Down Expand Up @@ -154,7 +154,7 @@ public function rewind() { }

/**
* Filtered iterator using the callback to determine which items are accepted or rejected.
* @link https://www.php.net/manual/en/class.callbackfilteriterator.php
* @link https://https://secure.php.net/manual/en/class.callbackfilteriterator.php
* @since 5.4.0
*/
class CallbackFilterIterator extends FilterIterator {
Expand All @@ -166,14 +166,14 @@ class CallbackFilterIterator extends FilterIterator {
* May be any valid callable value.
* The callback should accept up to three arguments: the current item, the current key and the iterator, respectively.
* <code> function my_callback($current, $key, $iterator) </code>
* @link https://www.php.net/manual/en/callbackfilteriterator.construct.php
* @link https://https://secure.php.net/manual/en/callbackfilteriterator.construct.php
*/
function __construct(Iterator $iterator , callable $callback) { }

/**
* This method calls the callback with the current value, current key and the inner iterator.
* The callback is expected to return TRUE if the current item is to be accepted, or FALSE otherwise.
* @link https://www.php.net/manual/en/callbackfilteriterator.accept.php
* @link https://https://secure.php.net/manual/en/callbackfilteriterator.accept.php
* @return bool true if the current element is acceptable, otherwise false.
*/
public function accept() { }
Expand All @@ -182,7 +182,7 @@ public function accept() { }
/**
* (PHP 5 >= 5.4.0)<br>
* RecursiveCallbackFilterIterator from a RecursiveIterator
* @link https://www.php.net/manual/en/class.recursivecallbackfilteriterator.php
* @link https://https://secure.php.net/manual/en/class.recursivecallbackfilteriterator.php
*/
class RecursiveCallbackFilterIterator extends CallbackFilterIterator implements RecursiveIterator {

Expand All @@ -191,7 +191,7 @@ class RecursiveCallbackFilterIterator extends CallbackFilterIterator implements
* @param RecursiveIterator $iterator The recursive iterator to be filtered.
* @param string $callback The callback, which should return TRUE to accept the current item or FALSE otherwise. See Examples.
* May be any valid callable value.
* @link https://www.php.net/manual/en/recursivecallbackfilteriterator.getchildren.php
* @link https://https://secure.php.net/manual/en/recursivecallbackfilteriterator.getchildren.php
*/
function __construct( RecursiveIterator $iterator, $callback ) { }

Expand All @@ -204,7 +204,7 @@ public function hasChildren() { }

/**
* Returns an iterator for the current entry.
* @link https://www.php.net/manual/en/recursivecallbackfilteriterator.haschildren.php
* @link https://https://secure.php.net/manual/en/recursivecallbackfilteriterator.haschildren.php
* @return RecursiveCallbackFilterIterator containing the children.
*/
public function getChildren() { }
Expand Down Expand Up @@ -1306,7 +1306,7 @@ public function setFlags($flags) { }

/**
* Returns current regular expression
* @link https://www.php.net/manual/en/regexiterator.getregex.php
* @link https://https://secure.php.net/manual/en/regexiterator.getregex.php
* @return string
* @since 5.4.0
*/
Expand Down
6 changes: 3 additions & 3 deletions Zend OPcache/OPcache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* (PHP 5 &gt;= 5.5.5, PECL ZendOpcache &gt;= 7.0.2 )<br/>
* Compiles and caches a PHP script without executing it
* @link http://www.php.net/manual/en/function.opcache-compile-file.php
* @link https://secure.php.net/manual/en/function.opcache-compile-file.php
* @param string $file The path to the PHP script to be compiled.
* @return boolean
* Returns <b>TRUE</b> if the opcode cache for <em>script</em> was
Expand All @@ -15,7 +15,7 @@ function opcache_compile_file($file) { }
/**
* (PHP 5 &gt;= 5.5.0, PECL ZendOpcache &gt;= 7.0.0 )<br/>
* Invalidates a cached script
* @link http://www.php.net/manual/en/function.opcache-invalidate.php
* @link https://secure.php.net/manual/en/function.opcache-invalidate.php
* @param string $script <p>The path to the script being invalidated.</p>
* @param bool $force [optional] <p> If set to <b>TRUE</b>, the script will be invalidated regardless of whether invalidation is necessary.</p>
* @return boolean
Expand All @@ -28,7 +28,7 @@ function opcache_invalidate($script, $force = FALSE) { }
/**
* (PHP 5 &gt;= 5.5.0, PECL ZendOpcache &gt;= 7.0.0 )<br/>
* Resets the contents of the opcode cache
* @link http://www.php.net/manual/en/function.opcache-reset.php
* @link https://secure.php.net/manual/en/function.opcache-reset.php
* @return boolean Returns <b>TRUE</b> if the opcode cache was reset, or <b>FALSE</b> if the opcode cache is disabled.
*/
function opcache_reset() { }
Expand Down
2 changes: 1 addition & 1 deletion apache/apache.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function getallheaders () {}
* virtual() is an Apache-specific function which is similar to <!--#include virtual...--> in mod_include. It performs an Apache sub-request. It is useful for including CGI scripts or .shtml files, or anything else that you would parse through Apache. Note that for a CGI script, the script must generate valid CGI headers. At the minimum that means it must generate a Content-Type header.
* To run the sub-request, all buffers are terminated and flushed to the browser, pending headers are sent too.
* This function is supported when PHP is installed as an Apache module or by the NSAPI server module in Netscape/iPlanet/SunONE webservers.
* @link hhttp://php.net/manual/en/function.virtual.php
* @link https://secure.php.net/manual/en/function.virtual.php
* @param string $filename <p>
* The file that the virtual command will be performed on.
* </p>
Expand Down
8 changes: 4 additions & 4 deletions cubrid/cubrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function cubrid_pconnect ($host, $port, $dbname, $userid = 'PUBLIC', $passwd = '
/**
* (PHP 5, CUBRID &gt;= 8.3.1)<br/>
* Open a persistent connection to CUBRID server
* @link http://www.php.net/manual/en/function.cubrid-pconnect-with-url.php
* @link https://secure.php.net/manual/en/function.cubrid-pconnect-with-url.php
* @param string $conn_url <p>
* A character string that contains server connection information.<br />
* Syntax: 'CUBRID:&gt;host&lt;:&gt;port&lt;:&gt;dbname&lt;:&gt;username&lt;:&gt;password&lt;:?&gt;params&lt;'.<br />
Expand Down Expand Up @@ -968,7 +968,7 @@ function cubrid_get_server_info ($conn_identifier) {}
/**
* (PHP 5, CUBRID &gt;= 8.3.0)<br/>
* Returns the CUBRID database parameters
* @link http://www.php.net/manual/en/function.cubrid-get-db-parameter.php
* @link https://secure.php.net/manual/en/function.cubrid-get-db-parameter.php
* @param resource $conn_identifier <p>
* Connection identifier.
* </p>
Expand Down Expand Up @@ -996,7 +996,7 @@ function cubrid_get_autocommit ($conn_identifier) {}
/**
* (PHP 5, CUBRID &gt;= 8.3.0)<br/>
* Return the current CUBRID connection charset
* @link http://www.php.net/manual/en/function.cubrid-get-charset.php
* @link https://secure.php.net/manual/en/function.cubrid-get-charset.php
* @param resource $conn_identifier <p>
* Connection identifier.
* </p>
Expand Down Expand Up @@ -1342,7 +1342,7 @@ function cubrid_lob_size ($lob_identifier) {}
* (PHP 5, CUBRID &gt;= 8.4.1)<br/>
* Bind a lob object or a string as a lob object to a
* prepared statement as parameters.
* @link http://www.php.net/manual/en/function.cubrid-lob2-bind.php
* @link https://secure.php.net/manual/en/function.cubrid-lob2-bind.php
* @param resource $req_identifier <p>
* Reqeust identifier.
* </p>
Expand Down
50 changes: 25 additions & 25 deletions curl/curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CURLFile {

/**
* Create a CURLFile object
* @link http://www.php.net/manual/en/curlfile.construct.php
* @link https://secure.php.net/manual/en/curlfile.construct.php
* @param string $filename <p>Path to the file which will be uploaded.</p>
* @param string $mimetype [optional] <p>Mimetype of the file.</p>
* @param string $postname [optional] <p>Name of the file.</p>
Expand All @@ -18,7 +18,7 @@ function __construct($filename, $mimetype, $postname) {

/**
* Get file name
* @link http://www.php.net/manual/en/curlfile.getfilename.php
* @link https://secure.php.net/manual/en/curlfile.getfilename.php
* @return string Returns file name.
* @since 5.5.0
*/
Expand All @@ -27,7 +27,7 @@ public function getFilename() {

/**
* Get MIME type
* @link http://www.php.net/manual/en/curlfile.getmimetype.php
* @link https://secure.php.net/manual/en/curlfile.getmimetype.php
* @return string Returns MIME type.
* @since 5.5.0
*/
Expand All @@ -36,7 +36,7 @@ public function getMimeType() {

/**
* Get file name for POST
* @link http://www.php.net/manual/en/curlfile.getpostfilename.php
* @link https://secure.php.net/manual/en/curlfile.getpostfilename.php
* @return string Returns file name for POST.
* @since 5.5.0
*/
Expand All @@ -45,7 +45,7 @@ public function getPostFilename() {

/**
* Set MIME type
* @link http://www.php.net/manual/en/curlfile.setmimetype.php
* @link https://secure.php.net/manual/en/curlfile.setmimetype.php
* @param string $mime
* @since 5.5.0
*/
Expand All @@ -54,15 +54,15 @@ public function setMimeType($mime) {

/**
* Set file name for POST
* http://www.php.net/manual/en/curlfile.setpostfilename.php
* https://secure.php.net/manual/en/curlfile.setpostfilename.php
* @param string $postname
* @since 5.5.0
*/
public function setPostFilename($postname) {
}

/**
* @link http://www.php.net/manual/en/curlfile.wakeup.php
* @link https://secure.php.net/manual/en/curlfile.wakeup.php
* Unserialization handler
* @since 5.5.0
*/
Expand Down Expand Up @@ -2132,9 +2132,9 @@ function curl_setopt_array ($ch, array $options) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Close a cURL share handle
* @link http://www.php.net/manual/en/function.curl-share-close.php
* @link https://secure.php.net/manual/en/function.curl-share-close.php
* @param resource $sh <p>
* A cURL share handle returned by {@link http://www.php.net/manual/en/function.curl-share-init.php curl_share_init()}
* A cURL share handle returned by {@link https://secure.php.net/manual/en/function.curl-share-init.php curl_share_init()}
* </p>
* @return void
* @since 5.5.0
Expand All @@ -2144,7 +2144,7 @@ function curl_share_close ($sh) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Initialize a cURL share handle
* @link http://www.php.net/manual/en/function.curl-share-init.php
* @link https://secure.php.net/manual/en/function.curl-share-init.php
* @return resource Returns resource of type "cURL Share Handle".
* @since 5.5.0
*/
Expand All @@ -2153,9 +2153,9 @@ function curl_share_init () {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Set an option for a cURL share handle.
* @link http://www.php.net/manual/en/function.curl-share-setopt.php
* @link https://secure.php.net/manual/en/function.curl-share-setopt.php
* @param resource $sh <p>
* A cURL share handle returned by {@link http://www.php.net/manual/en/function.curl-share-init.php curl_share_init()}.
* A cURL share handle returned by {@link https://secure.php.net/manual/en/function.curl-share-init.php curl_share_init()}.
* </p>
* @param int $option <table>
*
Expand Down Expand Up @@ -2234,7 +2234,7 @@ function curl_share_setopt ($sh, $option, $value ) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Return string describing the given error code
* @link http://www.php.net/manual/en/function.curl-strerror.php
* @link https://secure.php.net/manual/en/function.curl-strerror.php
* @param int $errornum <p>
* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html &nbsp;cURL error codes} constants.
* </p>
Expand All @@ -2246,9 +2246,9 @@ function curl_strerror ($errornum ) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Decodes the given URL encoded string
* @link http://www.php.net/manual/en/function.curl-unescape.php
* @link https://secure.php.net/manual/en/function.curl-unescape.php
* @param resource $ch <p>A cURL handle returned by
* {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @param string $str <p>
* The URL encoded string to be decoded.
* </p>
Expand Down Expand Up @@ -2326,10 +2326,10 @@ function curl_errno ($ch) {}

/**
* URL encodes the given string
* @link http://www.php.net/manual/en/function.curl-escape.php
* @link https://secure.php.net/manual/en/function.curl-escape.php
* @param resource $ch <p>
* A cURL handle returned by
* {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @param string $str <p>
* The string to be encoded.</p>
* @return string|boolean Returns escaped string or FALSE on failure.
Expand All @@ -2340,12 +2340,12 @@ function curl_escape($ch, $str) {}
/**
* (PHP 5 >= 5.5.0) <br/>
* Create a CURLFile object
* @link http://www.php.net/manual/en/curlfile.construct.php
* @link https://secure.php.net/manual/en/curlfile.construct.php
* @param string $filename <p> Path to the file which will be uploaded.</p>
* @param string $mimetype [optional] <p>Mimetype of the file.</p>
* @param string $postname [optional] <p>Name of the file.</p>
* @return CURLFile
* Returns a {@link http://www.php.net/manual/en/class.curlfile.php CURLFile} object.
* Returns a {@link https://secure.php.net/manual/en/class.curlfile.php CURLFile} object.
* @since 5.5.0
*/
function curl_file_create($filename, $mimetype, $postname) {}
Expand Down Expand Up @@ -2405,7 +2405,7 @@ function curl_multi_select ($mh, $timeout = null) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Set an option for the cURL multi handle
* @link www.php.net/manual/en/function.curl-multi-setopt.php
* @link https://secure.php.net/manual/en/function.curl-multi-setopt.php
* @param resource $mh
* @param int $option <p>
* One of the <b>CURLMOPT_*</b> constants.
Expand Down Expand Up @@ -2458,7 +2458,7 @@ function curl_multi_setopt ($mh, $option, $value) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Return string describing error code
* @link http://www.php.net/manual/en/function.curl-multi-strerror.php
* @link https://secure.php.net/manual/en/function.curl-multi-strerror.php
* @param int $errornum <p>
* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html CURLM error codes} constants.
* </p>
Expand All @@ -2470,9 +2470,9 @@ function curl_multi_strerror ($errornum) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Pause and unpause a connection
* @link http://www.php.net/manual/en/function.curl-pause.php
* @link https://secure.php.net/manual/en/function.curl-pause.php
* @param resource $ch
* <p>A cURL handle returned by {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* <p>A cURL handle returned by {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @param int $bitmask <p>One of <b>CURLPAUSE_*</b> constants.</p>
* @return int Returns an error code (<b>CURLE_OK</b> for no error).
* @since 5.5.0
Expand All @@ -2482,9 +2482,9 @@ function curl_pause ($ch, $bitmask ) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Reset all options of a libcurl session handle
* @link www.php.net/manual/en/function.curl-reset.php
* @link https://secure.php.net/manual/en/function.curl-reset.php
* @param resource $ch <p>A cURL handle returned by
* {@link www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @return void
* @since 5.5.0
*/
Expand Down
Loading

0 comments on commit 890dcf4

Please sign in to comment.