当我尝试在服务器上部署我的项目并在 CLI 中使用时
php app/console doctrine:schema:update
我收到了这个错误:
[Doctrine\Common\Annotations\AnnotationException]
[Semantical Error] The annotation "@Doctrine\ORM\Mapping\prePersist" in method ... does not exist, or could not be auto-loaded.
这是我的代码:
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity(repositoryClass="...")
* @ORM\Table(name="...")
* @ORM\HasLifecycleCallbacks()
*/
class User {
localy 在我的 php5.4.4 WAMP 上一切正常。
任何的想法?