2024-04-25 10:03:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\AppTemplate\AppInfo;
|
|
|
|
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
|
|
|
|
2024-11-10 13:03:55 +01:00
|
|
|
class Application extends App implements IBootstrap
|
|
|
|
{
|
2024-04-25 10:18:42 +02:00
|
|
|
public const APP_ID = 'app_template';
|
2024-04-25 10:03:54 +02:00
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct(self::APP_ID);
|
|
|
|
}
|
|
|
|
|
2024-11-10 13:03:55 +01:00
|
|
|
public function register(IRegistrationContext $context): void {}
|
2024-04-25 10:03:54 +02:00
|
|
|
|
2024-11-10 13:03:55 +01:00
|
|
|
public function boot(IBootContext $context): void {}
|
2024-04-25 10:03:54 +02:00
|
|
|
}
|