mirror of
https://github.com/nextcloud/server.git
synced 2025-05-03 05:20:31 +00:00

It has been deprecated for a long time, and the last known active application to use it (user_saml) is now migrated the modern API. Presence of the file is still checked in order to log an error. This behavior may be removed as well in a few versions. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
33 lines
657 B
PHP
33 lines
657 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\AppFramework\Bootstrap;
|
|
|
|
/**
|
|
* @since 20.0.0
|
|
*/
|
|
interface IBootstrap {
|
|
/**
|
|
* @param IRegistrationContext $context
|
|
*
|
|
* @since 20.0.0
|
|
*/
|
|
public function register(IRegistrationContext $context): void;
|
|
|
|
/**
|
|
* Boot the application
|
|
*
|
|
* At this stage you can assume that all services are registered and the DI
|
|
* container(s) are ready to be queried.
|
|
*
|
|
* @param IBootContext $context
|
|
*
|
|
* @since 20.0.0
|
|
*/
|
|
public function boot(IBootContext $context): void;
|
|
}
|