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