Skip to content

Commit

Permalink
Update MessageLogger.php
Browse files Browse the repository at this point in the history
  • Loading branch information
serzhik authored Mar 26, 2021
1 parent 7570c3d commit 9882c8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Model/Module/MessageLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ public function getNotices()

/**
* @param string $group
* @param string $notice
* @param string $success
*/
public function addSuccess($group, $notice)
public function addSuccess($group, $success)
{
$this->messages['success'][$group][] = $notice;
$this->messages['success'][$group][] = $success;
}

public function getSuccess()
Expand Down

0 comments on commit 9882c8c

Please sign in to comment.