Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
- space after foreach
  • Loading branch information
weierophinney committed Jun 27, 2012
1 parent 4490e38 commit 1fcdf03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Storage/Part.php
Expand Up @@ -325,7 +325,7 @@ public function getHeader($name, $format = null)
$return = $header->getFieldValue();
} else {
$return = '';
foreach($header as $h) {
foreach ($header as $h) {
$return .= $h->getFieldValue() . Mime\Mime::LINEEND;
}
$return = trim($return, Mime\Mime::LINEEND);
Expand All @@ -336,7 +336,7 @@ public function getHeader($name, $format = null)
$return = array($header->getFieldValue());
} else {
$return = array();
foreach($header as $h) {
foreach ($header as $h) {
$return[] = $h->getFieldValue();
}
}
Expand Down

0 comments on commit 1fcdf03

Please sign in to comment.