%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/varak.net/nextcloud.varak.net/apps/files_external/3rdparty/icewind/smb/src/
Upload File :
Create Path :
Current File : /www/varak.net/nextcloud.varak.net/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;
	}
}

Zerion Mini Shell 1.0