Преглед изворни кода

Migrate DAV to the PSR container

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v20.0.0beta1
Christoph Wurst пре 3 година
родитељ
комит
5005510d82
No account linked to committer's email address
1 измењених фајлова са 4 додато и 7 уклоњено
  1. 4
    7
      apps/dav/lib/AppInfo/Application.php

+ 4
- 7
apps/dav/lib/AppInfo/Application.php Прегледај датотеку

@@ -62,11 +62,11 @@ use OCP\AppFramework\IAppContainer;
use OCP\Calendar\IManager as ICalendarManager;
use OCP\Contacts\IManager as IContactsManager;
use OCP\IConfig;
use OCP\IContainer;
use OCP\ILogger;
use OCP\IServerContainer;
use OCP\IUser;
use OCP\Notification\IManager as INotificationManager;
use Psr\Container\ContainerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
use Throwable;
@@ -76,22 +76,19 @@ use function strpos;
class Application extends App implements IBootstrap {
public const APP_ID = 'dav';

/**
* Application constructor.
*/
public function __construct() {
parent::__construct(self::APP_ID);
}

public function register(IRegistrationContext $context): void {
$context->registerServiceAlias('CardDAVSyncService', SyncService::class);
$context->registerService(PhotoCache::class, function (IContainer $c) {
$context->registerService(PhotoCache::class, function (ContainerInterface $c) {
/** @var IServerContainer $server */
$server = $c->query(IServerContainer::class);
$server = $c->get(IServerContainer::class);

return new PhotoCache(
$server->getAppDataDir('dav-photocache'),
$server->getLogger()
$c->get(ILogger::class)
);
});


Loading…
Откажи
Сачувај