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

13 lines
158 B
PHP

<?php
namespace nur\sery\wip\php\impl;
class MyClass {
static function tstatic(): int {
return 1;
}
function tmethod(): int {
return 2;
}
}