Обновление до английской версии

This commit is contained in:
Sergey Panteleev
2021-11-30 13:53:57 +03:00
parent 1cf403cc51
commit a60ca95cb8
16 changed files with 203 additions and 54 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: e09dd5b25a4b626e2d639b24dbf644972869a846 Maintainer: aur Status: ready -->
<!-- EN-Revision: 06116ee1bf5f92dc34ac29849194d527e6860e21 Maintainer: aur Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.http-build-query" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@ -203,9 +203,9 @@ class parentClass {
public $pub = 'publicParent';
protected $prot = 'protectedParent';
private $priv = 'privateParent';
public $pub_bar = Null;
protected $prot_bar = Null;
private $priv_bar = Null;
public $pub_bar = null;
protected $prot_bar = null;
private $priv_bar = null;
public function __construct(){
$this->pub_bar = new childClass();