Database data within the BasePresenter
- Se7en
- Member | 13
Hi all.
I am trying to load a database table within my BasePresenter so that the data can be used via all the child presenters.
Here's the BasePresenter:
And here is an extended presenter example:
But I get the following error:
ArgumentCountError
Too few arguments to function App\Presenters\BasePresenter::__construct(), 0 passed in /home/test/app/presenters/TestPresenter.php.........
Can anybody explain where I'm going wrong?
- nightfish
- Member | 525
Se7en wrote:
Too few arguments to function App\Presenters\BasePresenter::__construct(), 0 passed in /home/test/app/presenters/TestPresenter.php.........
Can anybody explain where I'm going wrong?
When extending a class, you must pass all required parameters to parent's constructor.
There are two main ways of doing it:
- Add GlobalTable dependency to
TestPresenter.php
and pass it to parent, while leavingBasePresenter.php
unchanged:
- In abstract presenters you can use dependency injection via @inject
annotation. In
BasePresenter.php
change private to public, add @inject annotation:
This way you can add dependencies to your BasePresenter without the need to explicitly pass them from child presenters.
See docs for more information.
Last edited by nightfish (2019-04-19 10:00)