I had doctrine and ORM working very well together.
Then I removed three rows from my MySQL db and removed those values from my model. Now doctrine returns absolutely nothing. Not even a NULL value from the function or an error.
I’m wondering if doctrine caches my schema somewhere or if I’m missing something
Well if you removed the
rows(ie data from the table) then you wouldnt get anything returned as ther eis no data to return. If you mean you removed/modfied the table(s) structure then you need to rebuild your model.