Skip to content

Commit

Permalink
Fixed usage of undeclared variable
Browse files Browse the repository at this point in the history
  • Loading branch information
vovayatsyuk authored Mar 26, 2021
2 parents 04c88f1 + 9882c8c commit d61de32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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, $success)
{
$this->messages['success'][$group][] = $notice;
$this->messages['success'][$group][] = $success;
}

public function getSuccess()
Expand Down

0 comments on commit d61de32

Please sign in to comment.