I try to follow this tutorial on GitHub (https://github.com/lowtower/zend-expressive2-tutorial)
I understand everything (I think) but I wonder, what happens if I need to relate different tables using the TableGateway interface?
Taking the aforementioned tutorial as a guide, if my album is related to other tables in my database, how do I implement it in AlbumTableGateway? example, if I have another table called categories ...
or simply I must dispense with using the TableGateway interface, and if so, how can I implement this new solution in this guide?