<?php class A{public $b;public $c;public function A(){//TODO}public function Method(){$this->b=new B();$this->c=new C(); $this->b->Method();$this->c->Method(); //TO...
<?php
class A
{
public $b;
public $c;
public function A()
{
//TODO
}
public function Method()
{
$this->b=new B();
$this->c=new C();
$this->b->Method();
$this->c->Method();
...