%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/files_external/3rdparty/icewind/smb/src/ |
| Current File : /www/varak.net/nextcloud.varak.net/apps_old/apps/files_external/3rdparty/icewind/smb/src/Change.php |
<?php
/**
* SPDX-FileCopyrightText: 2016 Robin Appelman <robin@icewind.nl>
* SPDX-License-Identifier: MIT
*/
namespace Icewind\SMB;
class Change {
/** @var int */
private $code;
/** @var string */
private $path;
public function __construct(int $code, string $path) {
$this->code = $code;
$this->path = $path;
}
public function getCode(): int {
return $this->code;
}
public function getPath(): string {
return $this->path;
}
}