The PHP manual page about interfaces explicitly states:
All methods declared in an interface must be public; this is the nature of an interface.
I guess this explains the error you are getting 😉
The PHP manual page about interfaces explicitly states:
All methods declared in an interface must be public; this is the nature of an interface.
I guess this explains the error you are getting 😉