class First
{
protected $elem1;
protected $elem2;
protected $elem3;
protected $second;
public function __construct($elem1, $elem2, $elem3, $second)
{
$this->elem1 = $elem1;
$this->elem2 = $elem2;
$this->elem3 = $elem3;
$this->second = $second;
}
public function start()
{
return $this->second->start();
}
}