在Controller Symfony2中调用非对象的成员函数get()

时间:2016-07-29 02:41:12

标签: php symfony orocrm

我是OroCRM和Symfony2的新手,在我的DefaultController的方法更新中,我创建了一个OroCRM \ Bundle \ MagentoBundle \ Controller \ CustomerController的实例并调用它的方法

    $customerController = new CustomerController();
    $customerController->update($extendCustomer);

$ extendCustomer是OroCRM \ Bundle \ MagentoBundle \ Entity \ Customer

的继承者
    class ExtendCustomer extends Customer

但是当我调用CustomerController的方法更新时,它会抛出此错误:

Fatal error: Call to a member function get() on a non-object in /var/www/html/crm-application/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php on line 350

我已经在谷歌上搜索了我可以搜索的所有内容,但它仍然无效。我知道有一些服务,我不太了解。 请给我一些建议。非常感谢。

0 个答案:

没有答案