Debugging In Zend framework 3

Few things to try out:

  • try composer dump-autoload (it might be that the autoloader is still the one of when you first created the project)

  • try composer dump-autoload --optimize (usually finds also classes that are in wrong locations, but in the correct path - if this works, then your path and class name mismatch)

  • is your class in namespace Album;?