<?php class MyRepo { public function find($id) { return null; } } class Foo { function bar($repository) { $result = $repository->find(100); echo get_class($result); } } $foo = new Foo(); $foo->bar(new MyRepo);
You have javascript disabled. You will not be able to edit any code.