mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
18 lines
215 B
PHP
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;
|
|
}
|
|
}
|