Sonata Admin:在创建项目期间发生错误

时间:2015-07-21 09:52:48

标签: php symfony sonata

当我想在我的数据库中使用可与Sonata Admin配合使用的管理面板创建内容时,我确实遇到了问题。当我尝试时,我只有这个错误: " 在创建项目期间发生错误" 当我使用我的Synfony2日志时,我有这个错误: enter image description here

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

但我认为问题在于:

    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 );
    }

}

如果有人可以帮助我:(

1 个答案:

答案 0 :(得分:1)

ORDERorder相同,是一个保留的MySQL字,不能是列名。