diff options
author | tobiasKaminsky <tobias@kaminsky.me> | 2019-08-06 10:32:46 +0200 |
---|---|---|
committer | tobiasKaminsky <tobias@kaminsky.me> | 2019-08-06 10:32:46 +0200 |
commit | 82ae6fb6d31274a84040b1984a4f35c79c8a400a (patch) | |
tree | 4a7c54824f2e51f67a49a2acc8de9c5c7a96e485 /apps/dav/lib/Connector | |
parent | 85d5400314d3b01563b4af4ab1c30c3cf2d79722 (diff) | |
download | nextcloud-server-82ae6fb6d31274a84040b1984a4f35c79c8a400a.tar.gz nextcloud-server-82ae6fb6d31274a84040b1984a4f35c79c8a400a.zip |
use namespace everywhere
no camelCase
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
Diffstat (limited to 'apps/dav/lib/Connector')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/ShareeList.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/Connector/Sabre/ShareeList.php b/apps/dav/lib/Connector/Sabre/ShareeList.php index 642b57b0c7b..a9e9dfc2803 100644 --- a/apps/dav/lib/Connector/Sabre/ShareeList.php +++ b/apps/dav/lib/Connector/Sabre/ShareeList.php @@ -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(); } } |