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

16 lines
187 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 CC {
function __construct() {
}
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
}
}