app_template/lib/AppInfo/Application.php
provokateurin 99b105f5a7
fix: Change app id to app_template
Signed-off-by: provokateurin <kate@provokateurin.de>
2024-04-25 10:25:56 +02:00

26 lines
577 B
PHP

<?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;
class Application extends App implements IBootstrap {
public const APP_ID = 'app_template';
/** @psalm-suppress PossiblyUnusedMethod */
public function __construct() {
parent::__construct(self::APP_ID);
}
public function register(IRegistrationContext $context): void {
}
public function boot(IBootContext $context): void {
}
}