mirror of
https://github.com/nextcloud/server.git
synced 2025-02-24 17:06:50 +00:00
22 lines
548 B
PHP
22 lines
548 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC\Files\Storage;
|
|
|
|
use OC\Files\Cache\LocalRootScanner;
|
|
use OCP\Files\Cache\IScanner;
|
|
use OCP\Files\Storage\IStorage;
|
|
|
|
class LocalRootStorage extends Local {
|
|
public function getScanner(string $path = '', ?IStorage $storage = null): IScanner {
|
|
if (!$storage) {
|
|
$storage = $this;
|
|
}
|
|
return $storage->scanner ?? ($storage->scanner = new LocalRootScanner($storage));
|
|
}
|
|
}
|