13 lines
158 B
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;
|
||
|
}
|
||
|
}
|