Spaces:
No application file
No application file
File size: 674 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?php
namespace Mautic\CoreBundle\Doctrine\Mapping;
/**
* ManyToMany Association Builder.
*
* Override Doctrine's builder classes to add support to orphanRemoval until the fix is incorporated into Doctrine release
* See @see https://github.com/doctrine/doctrine2/pull/1326/
*/
class ManyToManyAssociationBuilder extends \Doctrine\ORM\Mapping\Builder\ManyToManyAssociationBuilder
{
/**
* Set orphanRemoval.
*
* @param bool $orphanRemoval
*
* @return ManyToManyAssociationBuilder
*/
public function orphanRemoval($orphanRemoval = true)
{
$this->mapping['orphanRemoval'] = $orphanRemoval;
return $this;
}
}
|