nur-sery/tests/wip/php/impl/C1.php

19 lines
238 B
PHP

<?php
namespace nur\sery\wip\php\impl;
class C1 {
function __construct($first) {
$this->first = $first;
}
public $first;
static function tstatic(): int {
return 10;
}
function tmethod(): int {
return 11;
}
}