diff options
author | Robin Appelman <robin@icewind.nl> | 2017-01-06 15:10:50 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-01-27 10:44:29 +0100 |
commit | 0aa211eefb4fd8d007f07d720825b9aa86e3c6ea (patch) | |
tree | f3b5e7dc83891c253857f6640e8ac97a9c53d5d5 /apps/files_external/3rdparty/icewind/smb/src/Change.php | |
parent | b5990b740d1208ee3c465fe49ca08d27855c35a6 (diff) | |
download | nextcloud-server-0aa211eefb4fd8d007f07d720825b9aa86e3c6ea.tar.gz nextcloud-server-0aa211eefb4fd8d007f07d720825b9aa86e3c6ea.zip |
Add missing smb files
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external/3rdparty/icewind/smb/src/Change.php')
-rw-r--r-- | apps/files_external/3rdparty/icewind/smb/src/Change.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/icewind/smb/src/Change.php b/apps/files_external/3rdparty/icewind/smb/src/Change.php new file mode 100644 index 00000000000..9dfd57b3973 --- /dev/null +++ b/apps/files_external/3rdparty/icewind/smb/src/Change.php @@ -0,0 +1,40 @@ +<?php +/** + * @copyright Copyright (c) 2016 Robin Appelman <robin@icewind.nl> + * This file is licensed under the Licensed under the MIT license: + * http://opensource.org/licenses/MIT + * + */ + +namespace Icewind\SMB; + +class Change { + private $code; + + private $path; + + /** + * Change constructor. + * + * @param $code + * @param $path + */ + public function __construct($code, $path) { + $this->code = $code; + $this->path = $path; + } + + /** + * @return integer + */ + public function getCode() { + return $this->code; + } + + /** + * @return string + */ + public function getPath() { + return $this->path; + } +} |