不是在寻找一个解决办法之后,我决定问这个问题。 其他一些“ askers” 伙伴也在这里这样做过, 尽管我尝试了提供的一些可能的解决办法, 我仍然得到同样的错误。
PHP似乎无法找到实体仓库类,
这里,我的设置:
仓库/用户存储器.php
use DoctrineORMEntityRepository;
class UsersRepository extends DoctrineORMEntityRepository {
public function getAllUsers(){
$dql = SELECT u.id, u.name FROM Users u ;
$query = $this->getEntityManager()->createQuery($dql);
return $query->getResult();
}
}
实体/用户.php
// This tells Doctrin which table to use from the schema
/**
* @Entity(repositoryClass="UsersRepository")
* @Table(name="users")
**/
class Users {
/**
* @Id @Column(type="integer") @GeneratedValue
**/
protected $id;
/**
* @Column(type="string")
**/
protected $name;
public function __construct() {
}
public function setUserName($name)
{
$this->name = $name;
}
public function getUserName()
{
return $this->name;
}
}
和在靴子陷阱文件 -/ / 启动陷阱. php - 我添加了
// including all repositories
require_once repositories/UsersRepository.php ;
当我运行/ GetUsers.php
require_once bootstrap.php ;
echo <p>fetching all users</p> ;
$allUsers = $b->entityManager->getRepository( Users )->getAllUsers();
s, 当我在 Apache 错误日志中发现错误时。 如果有人遇到同样的情况, 请帮助 。
谢谢