Skip to content

Commit

Permalink
Minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzmany committed May 8, 2019
1 parent edd1605 commit 12ff623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EventListener/CheckDeduplicateContactsListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Mautic\CoreBundle\EventListener\CommonSubscriber;
use Mautic\CoreBundle\Templating\Helper\ButtonHelper;
use Mautic\EmailBundle\Entity\Email;
use Mautic\LeadBundle\Event\CheckForDuplicateContactsEvent;
use Mautic\LeadBundle\Event\DuplicateContactsEvent;
use Mautic\LeadBundle\LeadEvents;
use Mautic\PluginBundle\Helper\IntegrationHelper;
use MauticPlugin\MauticCustomDeduplicateBundle\Deduplicate\CustomDuplications;
Expand Down Expand Up @@ -49,7 +49,7 @@ public static function getSubscribedEvents()
];
}

public function checkForDuplicateContacts(CheckForDuplicateContactsEvent $event)
public function checkForDuplicateContacts(DuplicateContactsEvent $event)
{
if (!defined('MAUTIC_CUSTOM_DEDUPLICATE_COMMAND')) {
return;
Expand Down

0 comments on commit 12ff623

Please sign in to comment.