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

15 lines
162 B
PHP
Raw Normal View History

2024-11-28 15:39:23 +04:00
<?php
namespace nur\b\impl;
class One {
function __construct() {
$this->two = new Two();
}
private $two;
function f() {
$this->two->f();
}
}