Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Invalid
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Security Level: All
-
Labels:
Description
Bug found when generation the Entity, Getters and Setters by using the Command:
> php app/console doctrine:generate:entities YourBundleBundle:YourEntity
In the situation you have a OneToMany relation in the Entity and you did implement the __construct(), then the Console Wont generate the ArrayCollection() !
In the case you did not implement the __construct(), then everything will goes fine when generating them,
Example:
/**
* @ORM\OneToMany(targetEntity=" YourBundleBundle \Entity\ YourEntity ", mappedBy=" YourEntity ")
*/
private $YourAttribut;
public function __construct()
{
$this-> YourAttribut = new \Doctrine\Common\Collections\ArrayCollection();
}
// But in the case you did implement the __construct() before using the Command, let say like this:
public function __construct()
{
$this-> YourOtherAttribut = a_value;
}
In this case, when using the Command to generate Entity, Getters and Setters, the Console Wont generate the ArrayCollection() of the OneToMany relations in the __construct() !
Activity
Ala Eddine Khefifi
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Description |
h3. Bug found when generation the Entity, Getters and Setters by using the Command:
{code:none} > php app/console doctrine:generate:entities YourBundleBundle:YourEntity {code} In the situation you have a *OneToMany* relation in the Entity and you did implement the *__construct()*, then the Console *Wont* generate the *ArrayCollection()* ! In the case you did not implement the *__construct()*, then everything will goes fine when generating them, Example: {code:none} /** * @ORM\OneToMany(targetEntity=" YourBundleBundle \Entity\ YourEntity ", mappedBy=" YourEntity ") */ private $YourAttribut; public function __construct() { $this-> YourAttribut = new \Doctrine\Common\Collections\ArrayCollection(); } // But in the case you did implement the __construct() before using the Command, let say like this: public function __construct() { $this-> YourOtherAttribut = a_value; } {code} In this case, when using the Command to generate Entity, Getters and Setters, the Console *Wont* generate the *ArrayCollection()* of the *OneToMany* relations in the *__construct()* ! |
h3. Bug found when generation the Entity, Getters and Setters by using the Command:
{code:none} > php app/console doctrine:generate:entities YourBundleBundle:YourEntity {code} In the situation you have a *OneToMany* relation in the Entity and you did implement the *__construct()*, then the Console *Wont* generate the *ArrayCollection()* ! In the case you did not implement the *__construct()*, then everything will goes fine when generating them, Example: {code:none} /** * @ORM\OneToMany(targetEntity=" YourBundleBundle \Entity\ YourEntity ", mappedBy=" YourEntity ") */ private $YourAttribut; public function __construct() { $this-> YourAttribut = new \Doctrine\Common\Collections\ArrayCollection(); } // But in the case you did implement the __construct() before using the Command, let say like this: public function __construct() { $this-> YourOtherAttribut = a_value; } {code} In this case, when using the Command to generate Entity, Getters and Setters, the Console *Wont* generate the *ArrayCollection()* of the *OneToMany* relations in the *__construct()* ! |
Marco Pivetta
made changes -
| Status | Open [ 1 ] | Closed [ 6 ] |
| Assignee | Benjamin Eberlei [ beberlei ] | Marco Pivetta [ ocramius ] |
| Resolution | Invalid [ 6 ] |
This list may be incomplete, as errors occurred whilst retrieving source from linked applications:
- Request to http://www.doctrine-project.org/fisheye/ failed: Error in remote call to 'FishEye 0 (http://www.doctrine-project.org/fisheye/)' (http://www.doctrine-project.org/fisheye) [AbstractRestCommand{path='/rest-service-fe/search-v1/crossRepositoryQuery', params={query=DDC-2255, expand=changesets[-21:-1].revisions[0:29],reviews}, methodType=GET}] : Received status code 503 (Service Temporarily Unavailable)
Ala Eddine Khefifi This is expected behavior, since the generator should not change already existing methods