-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathApplication.php
More file actions
31 lines (23 loc) · 704 Bytes
/
Copy pathApplication.php
File metadata and controls
31 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\CloudFederationAPI\AppInfo;
use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;
use OCP\AppFramework\Bootstrap\IBootstrap;
use OCP\AppFramework\Bootstrap\IRegistrationContext;
class Application extends App implements IBootstrap {
public const APP_ID = 'cloud_federation_api';
public function __construct() {
parent::__construct(self::APP_ID);
}
#[\Override]
public function register(IRegistrationContext $context): void {
}
#[\Override]
public function boot(IBootContext $context): void {
}
}