Permalink
Please
sign in to comment.
Showing
with
34 additions
and 2 deletions.
@@ -0,0 +1,16 @@ | ||
<?php declare(strict_types = 1); | ||
namespace Contributte\Nextras\Orm\Events\Listeners; | ||
use Nextras\Orm\Entity\IEntity; | ||
interface FlushListener | ||
{ | ||
/** | ||
* @param IEntity[] $persisted | ||
* @param IEntity[] $removed | ||
*/ | ||
public function onFlush(array $persisted, array $removed): void; | ||
} |
0 comments on commit
b6770da