[DDC-1907] Add generation of remove method for collections
This commit is contained in:
parent
f20a95fdc0
commit
5cdb0ae8be
2 changed files with 21 additions and 1 deletions
|
@ -219,6 +219,20 @@ public function <methodName>(<methodTypeHint>$<variableName>)
|
||||||
<spaces>$this-><fieldName>[] = $<variableName>;
|
<spaces>$this-><fieldName>[] = $<variableName>;
|
||||||
|
|
||||||
<spaces>return $this;
|
<spaces>return $this;
|
||||||
|
}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private static $removeMethodTemplate =
|
||||||
|
'/**
|
||||||
|
* <description>
|
||||||
|
*
|
||||||
|
* @param <variableType$<variableName>
|
||||||
|
*/
|
||||||
|
public function <methodName>(<methodTypeHint>$<variableName>)
|
||||||
|
{
|
||||||
|
<spaces>$this-><fieldName>->removeElement($<variableName>);
|
||||||
}';
|
}';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -794,6 +808,9 @@ public function __construct()
|
||||||
if ($code = $this->generateEntityStubMethod($metadata, 'add', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
if ($code = $this->generateEntityStubMethod($metadata, 'add', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
||||||
$methods[] = $code;
|
$methods[] = $code;
|
||||||
}
|
}
|
||||||
|
if ($code = $this->generateEntityStubMethod($metadata, 'remove', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
||||||
|
$methods[] = $code;
|
||||||
|
}
|
||||||
if ($code = $this->generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], 'Doctrine\Common\Collections\Collection')) {
|
if ($code = $this->generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], 'Doctrine\Common\Collections\Collection')) {
|
||||||
$methods[] = $code;
|
$methods[] = $code;
|
||||||
}
|
}
|
||||||
|
@ -879,7 +896,7 @@ public function __construct()
|
||||||
private function generateEntityStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null)
|
private function generateEntityStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null)
|
||||||
{
|
{
|
||||||
$methodName = $type . Inflector::classify($fieldName);
|
$methodName = $type . Inflector::classify($fieldName);
|
||||||
if ($type == "add" && substr($methodName, -1) == "s") {
|
if (in_array($type, array("add", "remove")) && substr($methodName, -1) == "s") {
|
||||||
$methodName = substr($methodName, 0, -1);
|
$methodName = substr($methodName, 0, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -124,6 +124,7 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase
|
||||||
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getAuthor'), "EntityGeneratorBook::getAuthor() missing.");
|
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getAuthor'), "EntityGeneratorBook::getAuthor() missing.");
|
||||||
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getComments'), "EntityGeneratorBook::getComments() missing.");
|
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getComments'), "EntityGeneratorBook::getComments() missing.");
|
||||||
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'addComment'), "EntityGeneratorBook::addComment() missing.");
|
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'addComment'), "EntityGeneratorBook::addComment() missing.");
|
||||||
|
$this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'removeComment'), "EntityGeneratorBook::removeComment() missing.");
|
||||||
|
|
||||||
$this->assertEquals('published', $book->getStatus());
|
$this->assertEquals('published', $book->getStatus());
|
||||||
|
|
||||||
|
@ -138,6 +139,8 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase
|
||||||
$book->addComment($comment);
|
$book->addComment($comment);
|
||||||
$this->assertInstanceOf('Doctrine\Common\Collections\ArrayCollection', $book->getComments());
|
$this->assertInstanceOf('Doctrine\Common\Collections\ArrayCollection', $book->getComments());
|
||||||
$this->assertEquals(new \Doctrine\Common\Collections\ArrayCollection(array($comment)), $book->getComments());
|
$this->assertEquals(new \Doctrine\Common\Collections\ArrayCollection(array($comment)), $book->getComments());
|
||||||
|
$book->removeComment($comment);
|
||||||
|
$this->assertEquals(new \Doctrine\Common\Collections\ArrayCollection(array()), $book->getComments());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testEntityUpdatingWorks()
|
public function testEntityUpdatingWorks()
|
||||||
|
|
Loading…
Add table
Reference in a new issue