Hello, I was just traversing the workflow of zend framework and cant really find where the function "findByUri()" is located, I found the class it belongs , simply dumping it, but going through the hierarchy of that class(parents , interfaces and so forth) I cant really find it. I found where it is called from
....
call_user_func_array(
array($this->getContainer(), $method),
$arguments);
...
but it is not in there (the class that GetContainer() returns)
any Idea, I know u can assign a variable to class simple by $class->someVar =...; But never had done it with class functions... Thanks