15 lines
162 B
PHP
15 lines
162 B
PHP
<?php
|
|
namespace nur\b\impl;
|
|
|
|
class One {
|
|
function __construct() {
|
|
$this->two = new Two();
|
|
}
|
|
|
|
private $two;
|
|
|
|
function f() {
|
|
$this->two->f();
|
|
}
|
|
}
|