kopia lustrzana https://github.com/nextcloud/social
Merge pull request #1937 from nextcloud/artonge/chore/remove_ilogger
chore: Remove reference to ILoggerpull/1938/head
commit
364ce951fd
|
@ -61,15 +61,15 @@ namespace OCA\Files_Trashbin\Trash {
|
||||||
|
|
||||||
interface ITrashItem extends FileInfo {
|
interface ITrashItem extends FileInfo {
|
||||||
public function getTrashBackend(): ITrashBackend;
|
public function getTrashBackend(): ITrashBackend;
|
||||||
|
|
||||||
public function getOriginalLocation(): string;
|
public function getOriginalLocation(): string;
|
||||||
|
|
||||||
public function getDeletedTime(): int;
|
public function getDeletedTime(): int;
|
||||||
|
|
||||||
public function getTrashPath(): string;
|
public function getTrashPath(): string;
|
||||||
|
|
||||||
public function isRootItem(): bool;
|
public function isRootItem(): bool;
|
||||||
|
|
||||||
public function getUser(): IUser;
|
public function getUser(): IUser;
|
||||||
|
|
||||||
public function getTitle(): string;
|
public function getTitle(): string;
|
||||||
|
@ -659,38 +659,6 @@ namespace OCA\DAV\Connector\Sabre {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace OC\BackgroundJob {
|
|
||||||
|
|
||||||
use OCP\BackgroundJob\IJob;
|
|
||||||
use OCP\BackgroundJob\IJobList;
|
|
||||||
use OCP\ILogger;
|
|
||||||
|
|
||||||
abstract class TimedJob implements IJob {
|
|
||||||
public function execute(IJobList $jobList, ILogger $logger = null) {
|
|
||||||
}
|
|
||||||
|
|
||||||
abstract protected function run($argument);
|
|
||||||
|
|
||||||
public function setId(int $id) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setLastRun(int $lastRun) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setArgument($argument) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getId() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLastRun() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getArgument() {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace OC\Files\Mount {
|
namespace OC\Files\Mount {
|
||||||
use OC\Files\Filesystem;
|
use OC\Files\Filesystem;
|
||||||
use OC\Files\Storage\Storage;
|
use OC\Files\Storage\Storage;
|
||||||
|
@ -705,10 +673,10 @@ namespace OC\Files\Mount {
|
||||||
protected $class;
|
protected $class;
|
||||||
protected $storageId;
|
protected $storageId;
|
||||||
protected $rootId = null;
|
protected $rootId = null;
|
||||||
|
|
||||||
/** @var int|null */
|
/** @var int|null */
|
||||||
protected $mountId;
|
protected $mountId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string|\OCP\Files\Storage\IStorage $storage
|
* @param string|\OCP\Files\Storage\IStorage $storage
|
||||||
* @param string $mountpoint
|
* @param string $mountpoint
|
||||||
|
@ -721,7 +689,7 @@ namespace OC\Files\Mount {
|
||||||
public function __construct($storage, $mountpoint, $arguments = null, $loader = null, $mountOptions = null, $mountId = null) {
|
public function __construct($storage, $mountpoint, $arguments = null, $loader = null, $mountOptions = null, $mountId = null) {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get complete path to the mount point, relative to data/
|
* get complete path to the mount point, relative to data/
|
||||||
*
|
*
|
||||||
|
@ -730,7 +698,7 @@ namespace OC\Files\Mount {
|
||||||
public function getMountPoint() {
|
public function getMountPoint() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the mount point path, relative to data/
|
* Sets the mount point path, relative to data/
|
||||||
*
|
*
|
||||||
|
@ -739,28 +707,28 @@ namespace OC\Files\Mount {
|
||||||
public function setMountPoint($mountPoint) {
|
public function setMountPoint($mountPoint) {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return \OCP\Files\Storage\IStorage
|
* @return \OCP\Files\Storage\IStorage
|
||||||
*/
|
*/
|
||||||
public function getStorage() {
|
public function getStorage() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getStorageId() {
|
public function getStorageId() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int
|
||||||
*/
|
*/
|
||||||
public function getNumericStorageId() {
|
public function getNumericStorageId() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $path
|
* @param string $path
|
||||||
* @return string
|
* @return string
|
||||||
|
@ -768,14 +736,14 @@ namespace OC\Files\Mount {
|
||||||
public function getInternalPath($path) {
|
public function getInternalPath($path) {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param callable $wrapper
|
* @param callable $wrapper
|
||||||
*/
|
*/
|
||||||
public function wrapStorage($wrapper) {
|
public function wrapStorage($wrapper) {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a mount option
|
* Get a mount option
|
||||||
*
|
*
|
||||||
|
@ -786,7 +754,7 @@ namespace OC\Files\Mount {
|
||||||
public function getOption($name, $default) {
|
public function getOption($name, $default) {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all options for the mount
|
* Get all options for the mount
|
||||||
*
|
*
|
||||||
|
@ -795,18 +763,18 @@ namespace OC\Files\Mount {
|
||||||
public function getOptions() {
|
public function getOptions() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int
|
||||||
*/
|
*/
|
||||||
public function getStorageRootId() {
|
public function getStorageRootId() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getMountId() {
|
public function getMountId() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getMountType() {
|
public function getMountType() {
|
||||||
throw new \Exception('stub');
|
throw new \Exception('stub');
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue