We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f2206 commit 50e170dCopy full SHA for 50e170d
lib/Gedmo/SoftDeleteable/SoftDeleteableListener.php
@@ -2,7 +2,6 @@
2
3
namespace Gedmo\SoftDeleteable;
4
5
-use Doctrine\ORM\Event\PostFlushEventArgs;
6
use Gedmo\Mapping\MappedEventSubscriber;
7
use Doctrine\Common\EventArgs;
8
use Doctrine\ODM\MongoDB\UnitOfWork as MongoDBUnitOfWork;
@@ -110,11 +109,11 @@ public function onFlush(EventArgs $args)
110
109
/**
111
* Detach soft-deleted objects from object manager.
112
*
113
- * @param \Doctrine\ORM\Event\PostFlushEventArgs $args
+ * @param \Doctrine\Common\EventArgs $args
114
115
* @return void
116
*/
117
- public function postFlush(PostFlushEventArgs $args)
+ public function postFlush(EventArgs $args)
118
{
119
$ea = $this->getEventAdapter($args);
120
$om = $ea->getObjectManager();
0 commit comments