[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

@ -223,7 +223,7 @@ class Component extends BaseObject
* will be implicitly called when executing `isset($component->property)`.
* @param string $name the property name or the event name
* @return bool whether the named property is set
* @see https://secure.php.net/manual/en/function.isset.php
* @see https://www.php.net/manual/en/function.isset.php
*/
public function __isset($name)
{
@ -255,7 +255,7 @@ class Component extends BaseObject
* will be implicitly called when executing `unset($component->property)`.
* @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)
{