32 lines
644 B
PHP
32 lines
644 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Radio\AppInfo;
|
|
|
|
use OCP\AppFramework\App;
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
|
use OCP\IRequest;
|
|
|
|
class Application extends App implements IBootstrap {
|
|
|
|
public const APP_ID = 'radio';
|
|
|
|
public function __construct() {
|
|
parent::__construct(self::APP_ID);
|
|
}
|
|
|
|
public function register(IRegistrationContext $context): void {
|
|
|
|
$context->registerService('request', static function ($c) {
|
|
return $c->get(IRequest::class);
|
|
});
|
|
|
|
}
|
|
|
|
public function boot(IBootContext $context): void {
|
|
}
|
|
}
|