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

13 lines
155 B
PHP
Raw Normal View History

2024-09-10 23:39:35 +04:00
<?php
namespace nur\sery\wip\php\impl;
2024-09-12 08:43:19 +04:00
class SC {
2024-09-10 23:39:35 +04:00
static function tstatic(): int {
2024-09-12 08:43:19 +04:00
return 10;
2024-09-10 23:39:35 +04:00
}
function tmethod(): int {
2024-09-12 08:43:19 +04:00
return 11;
2024-09-10 23:39:35 +04:00
}
}