mirror of
https://github.com/nextcloud/server.git
synced 2026-04-02 15:45:38 -04:00
8 lines
282 B
PHP
8 lines
282 B
PHP
<?php
|
|
|
|
use OCA\DAV\Command\CreateAddressBook;
|
|
|
|
$dbConnection = \OC::$server->getDatabaseConnection();
|
|
$userManager = OC::$server->getUserManager();
|
|
/** @var Symfony\Component\Console\Application $application */
|
|
$application->add(new CreateAddressBook($userManager, $dbConnection));
|