<?php class CarCollection {} class CarService { public function getCars(&$collection) { $collection = new CarCollection("foo"); } } $service = new CarService(); $collection = new StdClass; echo get_class($collection) . PHP_EOL; $service->getCars($collection); echo get_class($collection) . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.