#1169 DDC-3343 - refactoring test to use pre-existing test models
This commit is contained in:
parent
aed01ea571
commit
15397bbe40
3 changed files with 6 additions and 0 deletions
|
@ -168,6 +168,8 @@ class OneToManyPersister extends AbstractCollectionPersister
|
||||||
// clearing owning side value
|
// clearing owning side value
|
||||||
$targetMetadata->reflFields[$mapping['mappedBy']]->setValue($element, null);
|
$targetMetadata->reflFields[$mapping['mappedBy']]->setValue($element, null);
|
||||||
|
|
||||||
|
$this->uow->computeChangeSet($targetMetadata, $element);
|
||||||
|
|
||||||
$persister->update($element);
|
$persister->update($element);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -8,6 +8,8 @@ namespace Doctrine\Tests\Models\Tweet;
|
||||||
*/
|
*/
|
||||||
class Tweet
|
class Tweet
|
||||||
{
|
{
|
||||||
|
const CLASSNAME = __CLASS__;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Id
|
* @Id
|
||||||
* @GeneratedValue
|
* @GeneratedValue
|
||||||
|
|
|
@ -10,6 +10,8 @@ use Doctrine\Common\Collections\ArrayCollection;
|
||||||
*/
|
*/
|
||||||
class User
|
class User
|
||||||
{
|
{
|
||||||
|
const CLASSNAME = __CLASS__;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Id
|
* @Id
|
||||||
* @GeneratedValue
|
* @GeneratedValue
|
||||||
|
|
Loading…
Add table
Reference in a new issue