1
0

Watcher.php 447 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\Files_Sharing\External;
  8. class Watcher extends \OC\Files\Cache\Watcher {
  9. /**
  10. * remove deleted files in $path from the cache
  11. *
  12. * @param string $path
  13. */
  14. public function cleanFolder($path) {
  15. // not needed, the scanner takes care of this
  16. }
  17. }