Files
phpy/tests/lib/PhpyObject.php
2023-12-19 18:32:08 +08:00

18 lines
215 B
PHP

<?php
class PhpyObject
{
static public string $name = 'empty';
public $b;
function __construct(string $b)
{
$this->b = $b;
}
function test()
{
return $this->b;
}
}