diff options
Diffstat (limited to 'lib/legacy')
-rw-r--r-- | lib/legacy/updater.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/legacy/updater.php b/lib/legacy/updater.php new file mode 100644 index 00000000000..8a769a2f14b --- /dev/null +++ b/lib/legacy/updater.php @@ -0,0 +1,14 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class OC_Updater { + public static function check() { + $updater = new \OC\Updater(); + return $updater->check(); + } +} |