現在のクラスをパラメータとして渡すにはどうすればよいですか? 例:パラメータとしてPHPクラスを渡しますか?
class Example
{
public function test() {
$class = new Class2(I want to pass the Example class instance here)
}
}
class Class2
{
public function __construct(Example $example) {
}
}
https://stackoverflow.com/questions/32614696/passing-a-class-as-function-parameter –