I'm trying to index my entity User ( Id, Firstname, Lastname), everytime i run solr:index:populate, the bundle return the same error : No repository found for "UserBundle\Entity\User", check your input.
There is my configuration :
User.php
`<?php
namespace UserBundle\Entity;
use ...
use FS\SolrBundle\Doctrine\Annotation as Solr;
@Gedmo\SoftDeleteable(fieldName="deletedAt", timeAware=false)
*/
class User implements AdvancedUserInterface, \Serializable
{
use CreatableTrait, UpdatableTrait, DeletableTrait, ActivableTrait;
Hello !
I'm trying to index my entity User ( Id, Firstname, Lastname), everytime i run solr:index:populate, the bundle return the same error : No repository found for "UserBundle\Entity\User", check your input.
There is my configuration :
User.php
`<?php
namespace UserBundle\Entity;
use ... use FS\SolrBundle\Doctrine\Annotation as Solr;
/**
@Gedmo\SoftDeleteable(fieldName="deletedAt", timeAware=false) */ class User implements AdvancedUserInterface, \Serializable { use CreatableTrait, UpdatableTrait, DeletableTrait, ActivableTrait;
const UPLOAD_DIR = "uploads/photos"; const TRASH_DIR = "uploads/trash";
/**
/**
/**
... ` and my repository :
` <?php
namespace UserBundle\Repository; use FS\SolrBundle\Repository\Repository;
/**
class UserRepository extends Repository { ...`
Am i doing something wrong ?