13 lines
155 B
PHP
13 lines
155 B
PHP
<?php
|
|
namespace nur\sery\wip\php\impl;
|
|
|
|
class SC {
|
|
static function tstatic(): int {
|
|
return 10;
|
|
}
|
|
|
|
function tmethod(): int {
|
|
return 11;
|
|
}
|
|
}
|