f7cloud_client/lib/public/App/Events/AppUpdateEvent.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

35 lines
552 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\App\Events;
use OCP\EventDispatcher\Event;
/**
* This event is triggered when an app is updated.
*
* @since 27.0.0
*/
class AppUpdateEvent extends Event {
/**
* @since 27.0.0
*/
public function __construct(
private readonly string $appId,
) {
parent::__construct();
}
/**
* @since 27.0.0
*/
public function getAppId(): string {
return $this->appId;
}
}