[doc] Update PHP doc links (#18957)

* Replace https://secure.php.net with https://www.php.net

* Replace http://www.php.net with https://www.php.net
This commit is contained in:
Bizley
2021-10-19 14:50:26 +02:00
committed by GitHub
parent b22bcaebfd
commit 0041f034fd
221 changed files with 596 additions and 596 deletions

View File

@ -173,7 +173,7 @@ class BaseObject implements Configurable
* Note that if the property is not defined, false will be returned.
* @param string $name the property name or the event name
* @return bool whether the named property is set (not null).
* @see https://secure.php.net/manual/en/function.isset.php
* @see https://www.php.net/manual/en/function.isset.php
*/
public function __isset($name)
{
@ -195,7 +195,7 @@ class BaseObject implements Configurable
* If the property is read-only, it will throw an exception.
* @param string $name the property name
* @throws InvalidCallException if the property is read only.
* @see https://secure.php.net/manual/en/function.unset.php
* @see https://www.php.net/manual/en/function.unset.php
*/
public function __unset($name)
{