I'm starting to use Zend Framework 1.11 and Doctrine 2 and I have a problem.
After creating the database, when I run the command orm:validate-schema everything it's OK. Then I proceed to generate the proxies, and apparently there are not errors, but if I run the command orm:validate-schema I have the following error:
PHP Fatal error: Class 'Default_Model_VehicleOffer' not found in ../application/models/Proxies/__CG__Default_Model_VehicleOffer.php on line 8
Is like the Proxy of VehicleOffer class doesn't find the model class VehicleOffer, as if it doesn't exist. I think maybe there's and inheritance problem, because the error only happens with the proxy of that class, or maybe there's a configuration problem.
The structure of my project is:
|-- application/
| |-- configs/
| |-- controllers/
| |-- forms/
| |-- layouts/
| |-- models/
| | |-- Proxies/
| |-- views/
|-- bin/
|-- docs/
|-- library/
|-- public/
|-- tests/
Here it is the VechicleOffer class which inherits from Offer class (I omitted the constructor, getters and setters to make the comment shorter)
The 3 classes are in the same file, I don't know if that it's OK or not:
/**
* @Entity
* @Table(name="offer")
* @InheritanceType("JOINED")
* @DiscriminatorColumn(name="discr", type="string")
* @DiscriminatorMap({"property_offer" = "Default_Model_PropertyOffer", "vehicle_offer" = "Default_Model_VehicleOffer"})
*/
class Default_Model_Offer {
/**
* @Id @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
* */
protected $id;
/** @Column(type="date", nullable=false)*/
protected $initDate;
/** @Column(type="date", nullable=false)*/
protected $endDate;
/** @Column(type="boolean", nullable=false)*/
protected $expired;
/**
* @ManyToOne(targetEntity="Default_Model_User", inversedBy="offers")
* @JoinColumn(name="user_id", referencedColumnName="id")
**/
protected $user;
/**
* @OneToMany(targetEntity="Default_Model_Question", mappedBy="offer")
**/
protected $questions;
/**
* @OneToOne(targetEntity="Default_Model_OfferBill", mappedBy="offer")
**/
protected $offerBill;
}
/**
* @Entity
* @Table(name="property_offer")
*/
class Default_Model_PropertyOffer extends Default_Model_Offer {
/**
* @Id @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
* */
protected $id;
/**
* @OneToOne(targetEntity="Default_Model_Property", mappedBy="propertyOffer")
**/
protected $property;
}
/**
* @Entity
* @Table(name="vehicle_offer")
*/
class Default_Model_VehicleOffer extends Default_Model_Offer {
/**
* @Id @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
* */
protected $id;
/**
* @OneToOne(targetEntity="Default_Model_Vehicle", mappedBy="vehicleOffer")
**/
protected $vehicle;
}
The proxy of Default_Model_VehicleOffer:
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class Default_Model_VehicleOffer extends \Default_Model_VehicleOffer implements \Doctrine\ORM\Proxy\Proxy
{
private $_entityPersister;
private $_identifier;
public $__isInitialized__ = false;
public function __construct($entityPersister, $identifier)
{
$this->_entityPersister = $entityPersister;
$this->_identifier = $identifier;
}
/** @private */
public function __load()
{
if (!$this->__isInitialized__ && $this->_entityPersister) {
$this->__isInitialized__ = true;
if (method_exists($this, "__wakeup")) {
// call this after __isInitialized__to avoid infinite recursion
// but before loading to emulate what ClassMetadata::newInstance()
// provides.
$this->__wakeup();
}
if ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
/** @private */
public function __isInitialized()
{
return $this->__isInitialized__;
}
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) $this->_identifier["id"];
}
$this->__load();
return parent::getId();
}
public function setId($id)
{
$this->__load();
return parent::setId($id);
}
public function getVehicle()
{
$this->__load();
return parent::getVehicle();
}
public function setVehicle($vehicle)
{
$this->__load();
return parent::setVehicle($vehicle);
}
public function getInitDate()
{
$this->__load();
return parent::getInitDate();
}
public function setInitDate($initDate)
{
$this->__load();
return parent::setInitDate($initDate);
}
public function getEndDate()
{
$this->__load();
return parent::getEndDate();
}
public function setEndDate($endDate)
{
$this->__load();
return parent::setEndDate($endDate);
}
public function getExpired()
{
$this->__load();
return parent::getExpired();
}
public function setExpired($expired)
{
$this->__load();
return parent::setExpired($expired);
}
public function getUser()
{
$this->__load();
return parent::getUser();
}
public function setUser($user)
{
$this->__load();
return parent::setUser($user);
}
public function getQuestions()
{
$this->__load();
return parent::getQuestions();
}
public function setQuestions($questions)
{
$this->__load();
return parent::setQuestions($questions);
}
public function getOfferBill()
{
$this->__load();
return parent::getOfferBill();
}
public function setOfferBill($offerBill)
{
$this->__load();
return parent::setOfferBill($offerBill);
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'initDate', 'endDate', 'expired', 'user', 'questions', 'offerBill', 'vehicle');
}
public function __clone()
{
if (!$this->__isInitialized__ && $this->_entityPersister) {
$this->__isInitialized__ = true;
$class = $this->_entityPersister->getClassMetadata();
$original = $this->_entityPersister->load($this->_identifier);
if ($original === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
foreach ($class->reflFields AS $field => $reflProperty) {
$reflProperty->setValue($this, $reflProperty->getValue($original));
}
unset($this->_entityPersister, $this->_identifier);
}
}
}
Then my bootstrap.php file:
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
/**
* generate registry
* @return Zend_Registry
*/
protected function _initRegistry(){
$registry = Zend_Registry::getInstance();
return $registry;
}
/**
* Register namespace Default_
* @return Zend_Application_Module_Autoloader
*/
protected function _initAutoload()
{
$autoloader = new Zend_Application_Module_Autoloader(array(
'namespace' => 'Default_',
'basePath' => dirname(__FILE__),
));
return $autoloader;
}
/**
* Initialize Doctrine
* @return Doctrine_Manager
*/
public function _initDoctrine() {
// include and register Doctrine's class loader
require_once('Doctrine/Common/ClassLoader.php');
$classLoader = new \Doctrine\Common\ClassLoader(
'Doctrine',
APPLICATION_PATH . '/../library/'
);
$classLoader->register();
// create the Doctrine configuration
$config = new \Doctrine\ORM\Configuration();
// setting the cache ( to ArrayCache. Take a look at
// the Doctrine manual for different options ! )
$cache = new \Doctrine\Common\Cache\ArrayCache;
$config->setMetadataCacheImpl($cache);
$config->setQueryCacheImpl($cache);
// choosing the driver for our database schema
// we'll use annotations
$driver = $config->newDefaultAnnotationDriver(
APPLICATION_PATH . '/models'
);
$config->setMetadataDriverImpl($driver);
// set the proxy dir and set some options
$config->setProxyDir(APPLICATION_PATH . '/models/Proxies');
$config->setAutoGenerateProxyClasses(true);
$config->setProxyNamespace('App\Proxies');
// now create the entity manager and use the connection
// settings we defined in our application.ini
$connectionSettings = $this->getOption('doctrine');
$conn = array(
'driver' => $connectionSettings['conn']['driv'],
'user' => $connectionSettings['conn']['user'],
'password' => $connectionSettings['conn']['pass'],
'dbname' => $connectionSettings['conn']['dbname'],
'host' => $connectionSettings['conn']['host']
);
$entityManager = \Doctrine\ORM\EntityManager::create($conn, $config);
// push the entity manager into our registry for later use
$registry = Zend_Registry::getInstance();
$registry->entitymanager = $entityManager;
return $entityManager;
}
}
My doctrine.php file:
define('APPLICATION_ENV', 'development');
define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
get_include_path(),
)));
// Doctrine and Symfony Classes
require_once 'Doctrine/Common/ClassLoader.php';
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', APPLICATION_PATH . '/../library');
$classLoader->register();
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', APPLICATION_PATH . '/../library/Doctrine');
$classLoader->register();
$classLoader = new \Doctrine\Common\ClassLoader('Entities', APPLICATION_PATH . '/models');
$classLoader->setNamespaceSeparator('_');
$classLoader->register();
// Zend Components
require_once 'Zend/Application.php';
// Create application
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini');
// bootstrap doctrine
$application->getBootstrap()->bootstrap('doctrine');
$em = $application->getBootstrap()->getResource('doctrine');
// generate the Doctrine HelperSet
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)));
\Doctrine\ORM\Tools\Console\ConsoleRunner::run($helperSet);
And finally the application.ini file:
[production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 1
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
resources.view[]=
;;Doctring Configs
doctrine.conn.host = '127.0.0.1'
doctrine.conn.user = 'root'
doctrine.conn.pass = 'root'
doctrine.conn.driv = 'pdo_mysql'
doctrine.conn.dbname = 'eshop'
doctrine.path.models = APPLICATION_PATH "/models"
;; DB Configs
db.driver = "pdo_mysql"
db.host = "localhost"
db.dbname = "eshop"
db.user = "root"
db.password = "root"
[staging : production]
[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1
If anyone had a similar error, or know where the problem is, I appreciate you tell me.
Thanks!