Slide 115
Slide 115 text
public function collect() {
yield array(
new EntityRequirement(
'account',
Account::class,
array('accountId' => $this->requestContect->getAccountId())
),
);
yield array(
new ServiceRequirement(
'scienceDisciplines',
AccountService::class,
'getScienceDisciplines',
array('account' => $this->account)
)
);
}