The following code is the sample code:
$sample= $module->get('data')
->anotherModule
->find(true);
I couldn't understand what exactly is the object hierarchy in here. According to my knowledge, there must be an object $module
and that class has a method get
which takes the parameter as 'data'
.
But according to the code, still it gets deeper to anotherModule
and find
method. Can anyone explain me what is happening in this code?