diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-11-25 16:42:28 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-25 16:42:28 +0100 |
commit | b3e7e54c8d05b256ef523d7bdbbbb86a7aab8df7 (patch) | |
tree | a953f8d4f7ff3ccb52708fd057f95b49346e2be8 /lib/public/files | |
parent | 4e0fa85307105a40395987b3d6e50cb5a1652a18 (diff) | |
download | nextcloud-server-b3e7e54c8d05b256ef523d7bdbbbb86a7aab8df7.tar.gz nextcloud-server-b3e7e54c8d05b256ef523d7bdbbbb86a7aab8df7.zip |
fix some capital letters
Diffstat (limited to 'lib/public/files')
-rw-r--r-- | lib/public/files/folder.php | 5 | ||||
-rw-r--r-- | lib/public/files/node.php | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/public/files/folder.php b/lib/public/files/folder.php index 5c9785db571..7fec1c529a5 100644 --- a/lib/public/files/folder.php +++ b/lib/public/files/folder.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Folder interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; diff --git a/lib/public/files/node.php b/lib/public/files/node.php index e38bfa3b2ef..972b1cfa492 100644 --- a/lib/public/files/node.php +++ b/lib/public/files/node.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Node interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; |