Skip to content

Commit

Permalink
Update Email.php
Browse files Browse the repository at this point in the history
  • Loading branch information
obinoob committed Sep 4, 2017
1 parent 1a04fb0 commit da26f92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Mailer/Email.php
Expand Up @@ -2092,13 +2092,13 @@ protected function _logDelivery($contents)


/**
* Converts $param to string if array given
* Converts $array to string if array given
* @param null $key
* @return string
*/
protected function flatten($param = null)
protected function flatten($array = null)
{
return is_array($param) ? implode(';', $param) : (string) $param;
return is_array($array) ? implode(';', $array) : (string)$array;
}


Expand Down

0 comments on commit da26f92

Please sign in to comment.