opsdash-app/opsdash/tests/php/stubs/OCP/App/IAppManager.php
2026-02-14 14:38:45 +07:00

11 lines
233 B
PHP

<?php
declare(strict_types=1);
namespace OCP\App;
interface IAppManager {
public function isInstalled(string $appId): bool;
public function isEnabledForUser(string $appId): bool;
public function loadApp(string $appId): void;
}