You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generating functions with following error:
public static function content(){
return new Content(self::entityManager(), self::entityManager()->getClassMetadata('Content'));
}
The parameter of getClassMetadafa function is generated without namespace, the correct is:
public static function content(){
return new Content(self::entityManager(), self::entityManager()->getClassMetadata('Entities\Content'));
}
The text was updated successfully, but these errors were encountered:
Generating functions with following error:
public static function content(){
return new Content(self::entityManager(), self::entityManager()->getClassMetadata('Content'));
}
The parameter of getClassMetadafa function is generated without namespace, the correct is:
public static function content(){
return new Content(self::entityManager(), self::entityManager()->getClassMetadata('Entities\Content'));
}
The text was updated successfully, but these errors were encountered: