2026-02-09 23:02:34 -05:00

28 lines
716 B
PHP

<?php
declare(strict_types=1);
namespace OCA\MailCalendarSync\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 = 'mail_calendar_sync';
public function __construct(array $urlParams = []) {
parent::__construct(self::APP_ID, $urlParams);
}
public function register(IRegistrationContext $context): void {
// Nothing to register at this time - background job is declared in info.xml
}
public function boot(IBootContext $context): void {
// Nothing to boot
}
}