diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-11-02 15:04:56 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-11-13 10:41:33 +0100 |
commit | 84e5b76d3cac223330fc1bc5a83349bd8d23b5f8 (patch) | |
tree | 81713f36b103e9a1368c9d3c4d91290674ecd998 /lib/public/files/node.php | |
parent | 1e9203cdef7009ef129f0f3e3db6a326d3f4db12 (diff) | |
download | nextcloud-server-84e5b76d3cac223330fc1bc5a83349bd8d23b5f8.tar.gz nextcloud-server-84e5b76d3cac223330fc1bc5a83349bd8d23b5f8.zip |
Add getOwner() method to FileInfo and Node API
Diffstat (limited to 'lib/public/files/node.php')
-rw-r--r-- | lib/public/files/node.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/files/node.php b/lib/public/files/node.php index aa1115f8c28..866b9b6f61f 100644 --- a/lib/public/files/node.php +++ b/lib/public/files/node.php @@ -225,4 +225,12 @@ interface Node extends FileInfo { * @since 6.0.0 */ public function getName(); + + /** + * Get the file owner + * + * @since 9.0.0 + * @return string + */ + public function getOwner(); } |