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

13 lines
158 B
PHP
Raw Normal View History

2024-09-10 23:39:35 +04:00
<?php
namespace nur\sery\wip\php\impl;
class MyClass {
static function tstatic(): int {
return 1;
}
function tmethod(): int {
return 2;
}
}