このエラーが発生し続けます:
/* ... */
$em = $this->getDoctrine()->getEntityManager();
$movie = $em->getRepository('MyMyBundle:Movie')->findMovieByName('moviename'); // Repository Class
\Doctrine\Common\Util\Debug::dump($movie); // dumps the object just fine! The Repository found it
echo $movie->getId(); // brings me the error nevertheless
致命的なエラー: 行 ... の非オブジェクトでメンバー関数 getId() を呼び出します ...
エンティティに getId() メソッドがあります。他のメソッドも、それがオブジェクトであっても機能しません。
オブジェクトは次のようにダンプされます。
..... array(1) { [0]=> object(stdClass)#759 (59) { ["__CLASS__"]=> string( .....
ヒントはありますか?