version; } /** * {@inheritDoc} * @since 24.0.0 */ public function canImport( IImportSource $importSource, ): bool { $version = $importSource->getMigratorVersion($this->getId()); if ($version === null) { return !$this->mandatory; } return ($this->version >= $version); } } merged Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Lib/SessionStorageWrapper.php
blob: 06bece3bf7caee0aadda846fff399abe856d8ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24