fix some types
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
622ba4f0c8
commit
c0436c367b
|
@ -34,7 +34,6 @@ use OCA\Files_External\Config\ConfigAdapter;
|
|||
use OCA\Files_External\Config\UserPlaceholderHandler;
|
||||
use OCA\Files_External\Listener\GroupDeletedListener;
|
||||
use OCA\Files_External\Listener\UserDeletedListener;
|
||||
use OCA\Files_External\Service\DBConfigService;
|
||||
use OCA\Files_External\Lib\Auth\AmazonS3\AccessKey;
|
||||
use OCA\Files_External\Lib\Auth\Builtin;
|
||||
use OCA\Files_External\Lib\Auth\NullMechanism;
|
||||
|
@ -71,12 +70,7 @@ use OCP\AppFramework\Bootstrap\IBootstrap;
|
|||
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
||||
use OCP\Files\Config\IMountProviderCollection;
|
||||
use OCP\Group\Events\GroupDeletedEvent;
|
||||
use OCP\IGroup;
|
||||
use OCP\IUser;
|
||||
use OCP\User\Events\UserDeletedEvent;
|
||||
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
||||
use Symfony\Component\EventDispatcher\GenericEvent;
|
||||
use function foo\func;
|
||||
|
||||
require_once __DIR__ . '/../../3rdparty/autoload.php';
|
||||
|
||||
|
@ -113,7 +107,7 @@ class Application extends App implements IBackendProvider, IAuthMechanismProvide
|
|||
'name' => $l->t('External storages'),
|
||||
];
|
||||
});
|
||||
$context->injectFn(function(BackendService $backendService, UserPlaceholderHandler $userConfigHandler) {
|
||||
$context->injectFn(function (BackendService $backendService, UserPlaceholderHandler $userConfigHandler) {
|
||||
$backendService->registerBackendProvider($this);
|
||||
$backendService->registerAuthMechanismProvider($this);
|
||||
$backendService->registerConfigHandler('user', function () use ($userConfigHandler) {
|
||||
|
|
|
@ -120,7 +120,7 @@ class Create extends Base {
|
|||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$user = $input->getOption('user');
|
||||
$user = (string) $input->getOption('user');
|
||||
$mountPoint = $input->getArgument('mount_point');
|
||||
$storageIdentifier = $input->getArgument('storage_backend');
|
||||
$authIdentifier = $input->getArgument('authentication_backend');
|
||||
|
|
|
@ -108,7 +108,7 @@ class Import extends Base {
|
|||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$user = $input->getOption('user');
|
||||
$user = (string) $input->getOption('user');
|
||||
$path = $input->getArgument('path');
|
||||
if ($path === '-') {
|
||||
$json = file_get_contents('php://stdin');
|
||||
|
|
Loading…
Reference in New Issue