Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Follow PSR2 code style #64

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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