diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-02-21 15:33:12 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-02-21 15:33:12 +0100 |
commit | 3980a7d9c6a20e7c0c9b92342e59e2a7ec443667 (patch) | |
tree | fa09b8f5a1a3d5695ce1278122d05fea7a1c8407 /lib/private/db/mdb2schemawriter.php | |
parent | 1331de554c0ab619df1826424e502803535481e2 (diff) | |
parent | aa0bcf7ba45d004b0c0226fd07696f9f224f9c1c (diff) | |
download | nextcloud-server-3980a7d9c6a20e7c0c9b92342e59e2a7ec443667.tar.gz nextcloud-server-3980a7d9c6a20e7c0c9b92342e59e2a7ec443667.zip |
Merge branch 'master' into folderid-reuse
Diffstat (limited to 'lib/private/db/mdb2schemawriter.php')
-rw-r--r-- | lib/private/db/mdb2schemawriter.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/private/db/mdb2schemawriter.php b/lib/private/db/mdb2schemawriter.php index 42d5bbab112..a2a62a81475 100644 --- a/lib/private/db/mdb2schemawriter.php +++ b/lib/private/db/mdb2schemawriter.php @@ -51,6 +51,9 @@ class OC_DB_MDB2SchemaWriter { } } + /** + * @param SimpleXMLElement $xml + */ private static function saveColumn($column, $xml) { $xml->addChild('name', $column->getName()); switch($column->getType()) { @@ -114,6 +117,9 @@ class OC_DB_MDB2SchemaWriter { } } + /** + * @param SimpleXMLElement $xml + */ private static function saveIndex($index, $xml) { $xml->addChild('name', $index->getName()); if ($index->isPrimary()) { |