2016-02-09 15:06:48 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2018-01-11 13:58:43 +03:00
|
|
|
* @copyright Copyright (c) 2018, Joas Schilling <coding@schilljs.com>
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-02-09 15:06:48 +03:00
|
|
|
*
|
2018-01-11 13:58:43 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
2016-02-09 15:06:48 +03:00
|
|
|
*
|
2018-01-11 13:58:43 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2016-02-09 15:06:48 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2018-01-11 13:58:43 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-02-09 15:06:48 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2018-01-11 13:58:43 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-02-09 15:06:48 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-11-04 21:25:00 +03:00
|
|
|
use \OCA\UpdateNotification\AppInfo\Application;
|
|
|
|
|
|
|
|
/** @var Application $app */
|
|
|
|
$app = \OC::$server->query(Application::class);
|
2018-01-11 13:58:43 +03:00
|
|
|
$app->register();
|