use namespace everywhere

no camelCase

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2019-08-06 10:32:46 +02:00
parent 85d5400314
commit 82ae6fb6d3
No known key found for this signature in database
GPG Key ID: 0E00D4D47D0C5AF7
1 changed files with 3 additions and 3 deletions

View File

@ -52,9 +52,9 @@ class ShareeList implements XmlSerializable {
function xmlSerialize(Writer $writer) {
foreach ($this->shares as $share) {
$writer->startElement('{' . self::NS_NEXTCLOUD . '}sharee');
$writer->writeElement("id", $share->getSharedWith());
$writer->writeElement("displayName", $share->getSharedWithDisplayName());
$writer->writeElement('type', $share->getShareType());
$writer->writeElement('{' . self::NS_NEXTCLOUD . '}id', $share->getSharedWith());
$writer->writeElement('{' . self::NS_NEXTCLOUD . '}display-name', $share->getSharedWithDisplayName());
$writer->writeElement('{' . self::NS_NEXTCLOUD . '}type', $share->getShareType());
$writer->endElement();
}
}