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

19 lines
238 B
PHP
Raw Normal View History

2024-09-10 23:39:35 +04:00
<?php
namespace nur\sery\wip\php\impl;
2024-09-12 20:43:17 +04:00
class C1 {
function __construct($first) {
$this->first = $first;
2024-09-12 08:43:19 +04:00
}
2024-09-12 20:43:17 +04:00
public $first;
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
}
}