Skip to content

Commit

Permalink
style(CFPropertyList): follow PSR2 code style
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <[email protected]>
  • Loading branch information
btry committed Aug 13, 2020
1 parent 7fa7519 commit c1832f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/CFPropertyList/CFPropertyList.php
Original file line number Diff line number Diff line change
Expand Up @@ -409,11 +409,11 @@ protected function import(DOMNode $node, $parent)
break;
}

// Dictionaries need a key
if ($parent instanceof CFDictionary) {
// Dictionaries need a key
$parent->add($key, $value);
} // others don't
else {
} else {
// others don't
$parent->add($value);
}
}
Expand Down

0 comments on commit c1832f7

Please sign in to comment.