nur-sery/nur_tests/b/impl/One.php

15 lines
162 B
PHP
Raw Normal View History

2023-12-03 22:11:29 +04:00
<?php
namespace nur\b\impl;
class One {
function __construct() {
$this->two = new Two();
}
private $two;
function f() {
$this->two->f();
}
}