Skip to content

Commit

Permalink
braces on new line
Browse files Browse the repository at this point in the history
  • Loading branch information
xelan committed Aug 19, 2014
1 parent 6efb358 commit 8a5fa5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Ddeboer/Imap/Message/Part.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ protected function parseStructure(\stdClass $structure)
if (isset($partStructure->disposition)
&& (strtolower($partStructure->disposition) == 'attachment'
|| strtolower($partStructure->disposition) == 'inline')
&& strtoupper($partStructure->subtype) != "PLAIN") {
&& strtoupper($partStructure->subtype) != "PLAIN"
) {
$attachment = new Attachment($this->stream, $this->messageNumber, $partNumber, $partStructure);
$this->parts[] = $attachment;
} else {
Expand Down

0 comments on commit 8a5fa5f

Please sign in to comment.