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 316946d commit 1a04fb0
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 an array to string * Converts $param to string if array given
* @param null $key * @param null $key
* @return string * @return string
*/ */
protected function flatten($key = null) protected function flatten($param = null)
{ {
return is_array($key) ? implode(';', $key) : (string) $key; return is_array($param) ? implode(';', $param) : (string) $param;
} }




Expand Down

0 comments on commit 1a04fb0

Please sign in to comment.