I want to start with Symfony CMF, but I have a problem. I followed tutorial but instead of using default SQL, I need MySQL with doctrine ORM, so I tried configuring it following these guides. Everything looks good until I try to initiate database, by using following command using Doctrine ORM:
$ php app/console doctrine:database:create
$ php app/console doctrine:schema:create
but after firing
$ php app/console doctrine:schema:create
I get error: "No Metadata Classes to process."
As far as my conclusion goes, I need to create some classes which will act as routes, though nothing of that sort is mentioned in above guides. To avoid long post I setup git repo with source code. What may be the cause of this problem, and how could I fix it?