.github
appinfo
img
lib
AppInfo
Application.php
Application.phpZone.Identifier
Controller
src
templates
tests
vendor-bin
.eslintrc.js
.eslintrc.jsZone.Identifier
.gitignore
.gitignoreZone.Identifier
.nvmrc
.nvmrcZone.Identifier
.php-cs-fixer.dist.php
.php-cs-fixer.dist.phpZone.Identifier
CHANGELOG.md
CHANGELOG.mdZone.Identifier
CODE_OF_CONDUCT.md
CODE_OF_CONDUCT.mdZone.Identifier
LICENSE
LICENSEZone.Identifier
README.md
README.mdZone.Identifier
composer.json
composer.jsonZone.Identifier
openapi.json
openapi.jsonZone.Identifier
package.json
package.jsonZone.Identifier
psalm.xml
psalm.xmlZone.Identifier
stylelint.config.js
stylelint.config.jsZone.Identifier
webpack.js
webpack.jsZone.Identifier
26 lines
572 B
PHP
26 lines
572 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\WebServer\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 = 'webserver';
|
|
|
|
/** @psalm-suppress PossiblyUnusedMethod */
|
|
public function __construct() {
|
|
parent::__construct(self::APP_ID);
|
|
}
|
|
|
|
public function register(IRegistrationContext $context): void {
|
|
}
|
|
|
|
public function boot(IBootContext $context): void {
|
|
}
|
|
}
|