Skip to content

Commit

Permalink
Update EmailSentHelper.php
Browse files Browse the repository at this point in the history
fixing typo
  • Loading branch information
gugacavalieri authored Jul 5, 2019
1 parent 08e34b8 commit b00c3ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Helper/EmailSentHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ class EmailSentHelper
/**
* @var IntegrationHelper
*/
private static $integratonHelper;
private static $integrationHelper;

/**
* @param IntegrationHelper $helper
* @param LoggerInterface $logger
*/
public static function init(IntegrationHelper $helper)
{
self::$integratonHelper = $helper;
self::$integrationHelper = $helper;
}


Expand All @@ -40,7 +40,7 @@ public static function init(IntegrationHelper $helper)
public static function getIntegration()
{
try {
return self::$integratonHelper->getIntegrationObject('EmailSentNotifier');
return self::$integrationHelper->getIntegrationObject('EmailSentNotifier');
} catch (\Exception $e) {
// do nothing
}
Expand Down

0 comments on commit b00c3ec

Please sign in to comment.