Introduction to Silex - A Symfony Micro-framework

Hi there,
first, thanks a lot for the great tutorial. I was able to follow it easily, but when It comes to the controller-grouping part, things stopped working (for me).

I’ve copied the mentioned folder structure 1:1, but when I try to “mount” the controller:

$app->mount(“/users”, new \MyApp\Controller\Provider\User());

I get the error

Fatal error: Class ‘MyApp\Controller\Provider\User’ not found

It’s not clear to me from where Silex “knows” that the controller-provider is in the folder src/MyApp/Controller/Provider/ (and - obvisiusly - it doesn’t know it in my case ;))

So - simple or not - some working source code would be really great. It can help a lot to find little mistakes and get things working.
Many Thanks!