Sonata Admin:创建项目时发生错误

Sonata Admin: An error has occurred during the creation of item

当我想使用与 Sonata Admin 配合使用的管理面板在我的数据库中创建内容时,我遇到了一个问题。当我尝试时,我只有这个错误: “创建项目时发生错误” 当我使用我的 Synfony2 日志时,出现以下错误:

我不知道如何解决这个问题,因为我找不到可以帮助我的主题:(

但我认为问题出在这里:

    namespace Kayser\PlatformBundle\Entity\Repository;

use Doctrine\ORM\EntityRepository;

/**
 * AnnoncesRepository
 *
 * This class was generated by the Doctrine ORM. Add your own custom
 * repository methods below.
 */
class AnnoncesRepository extends EntityRepository
{
    public function findAll($order = array())
    {
        if (!sizeof($order)) {
            $order = array('order' => 'ASC');
        }
        return $this->findBy(array(), $order );
    }

}

如果有人可以帮助我:(

ORDERorder一样是保留字MySQL,不能是列名。