добавил несколько парсеров

This commit is contained in:
2024-11-04 20:12:41 +03:00
parent 5344b31f97
commit 1117bd5ddc
2022 changed files with 2235 additions and 190924 deletions

19
tests/test_conf.php Normal file
View File

@ -0,0 +1,19 @@
<?php
class A {
public $a;
public function y() {
$this->a = new class {
public readonly string $x;
public function d(): void {
$this->x = '1';
}
};
$this->a->d();
echo $this->a->x;
}
}
$a = new A();
$a->y();