教义错误:找不到类 'DoctrineORMEntityRepository'

Doctrine error: Class #39;DoctrineORMEntityRepository#39; not found(教义错误:找不到类 DoctrineORMEntityRepository)
本文介绍了教义错误:找不到类 'DoctrineORMEntityRepository'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是 Doctrine 的新手,我正在关注文档中的示例.当我创建一个 Repository 类(例如 UserRepository.php)并尝试扩展 EntityRepository 类时,我收到以下错误消息:Fatal error: Class 'DoctrineORMEntityRepository' not found in C:xampphtdocsexcap epositoriesUserRepository.php 第 10 行

I'm new in Doctrine, I'm following the examples in the documentation. When I create a Repository class (e.g. UserRepository.php) and I try to extend EntityRepository class I get this error message: Fatal error: Class 'DoctrineORMEntityRepository' not found in C:xampphtdocsexcap epositoriesUserRepository.php on line 10

这是我的存储库类:

use DoctrineORMEntityRepository;

/**
 * Description of UserRepository
 *
 * @author Mario
 */
class UserRepository extends EntityRepository
{ 

我做错了什么?(顺便说一下,我使用 Composer 安装了 Doctrine2)

What am I doing wrong? (by the way, I installed Doctrine2 using Composer)

<?php
//bootstrap_doctrine.php
$isDevMode = true;
use DoctrineORMToolsSetup;
require_once 'vendor/autoload.php';

$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__.'/entities'), $isDevMode);
$conn = array(
    'driver' => 'pdo_mysql',
    'user' => 'mydbuser',
    'password' => 'mydbpassword',
    'dbname' => 'mydbname'
);

$entityManager = DoctrineORMEntityManager::create($conn, $config);
?>

<小时>

<?php
//boostrap.php
//Entities
require_once 'entities/User.php';
require_once 'entities/Gender.php';
require_once 'entities/AccessPoint.php';

//Repositories
require_once 'repositories/UserRepository.php';

if(!class_exists("DoctrineCommonVersion", FALSE))
{
    require_once 'bootstrap_doctrine.php';
}
?>

<小时>

<?php
// autoload.php generated by Composer
if (!class_exists('Composer\Autoload\ClassLoader', false)) {
    require __DIR__ . '/composer' . '/ClassLoader.php';
}

return call_user_func(function() {
    $loader = new ComposerAutoloadClassLoader();
    $composerDir = __DIR__ . '/composer';

    $map = require $composerDir . '/autoload_namespaces.php';
    foreach ($map as $namespace => $path) {
        $loader->add($namespace, $path);
    }

    $classMap = require $composerDir . '/autoload_classmap.php';
    if ($classMap) {
        $loader->addClassMap($classMap);
    }

    $loader->register();

    return $loader;
});
?>

推荐答案

问题解决了.问题出在 bootstrap.php 文件中.我在加载 bootstrap_doctrine.php 之前加载了实体;就是这样.

Problem solved. The problem was in the bootstrap.php file. I was loading the entities before loading the bootstrap_doctrine.php; that's all.

这篇关于教义错误:找不到类 'DoctrineORMEntityRepository'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)