1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/ORM/Persisters/ManyToManyPersister.php

27 lines
437 B
PHP
Raw Normal View History

<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
namespace Doctrine\ORM\Persisters;
/**
* Persister for many-to-many collections.
*
* @author robo
*/
class ManyToManyPersister extends AbstractCollectionPersister
{
/**
*
* @param <type> $coll
* @override
*/
protected function _getDeleteRowSql(PersistentCollection $coll)
{
}
}