Symfony2: How to operate with datetime-objects
In Symfony2 (Doctrine ORM) dates represented as DateTime objects (http://php.net/DateTime)
So if $game->getZeit()
is instance of DateTime, you can convert it to string like
$game->getZeit()->format('Y-m-d H:i:s');