Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Command/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$this->installationService->setStyle(new SymfonyStyle($input, $output));

return $this->installationService->install($input->getArgument('bundle'), [
'data' => $input->getArgument('data'),
'data' => $input->getArgument('data'),
'noSchema' => $input->getOption('schema'),
'script' => $input->getOption('script'),
'unsafe' => $input->getOption('unsafe')
'script' => $input->getOption('script'),
'unsafe' => $input->getOption('unsafe'),
]);
}
}
2 changes: 1 addition & 1 deletion Service/RequestService.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public function requestHandler(array $data, array $configuration): Response
$responseLog = new Response(is_string($this->content) || is_null($this->content) ? $this->content : null, 200, ['CoreBundle' => 'GetItem']);
$session = new Session();
$session->set('object', $this->id);

// todo: This log is needed so we know an user has 'read' this object
$this->logService->saveLog($this->logService->makeRequest(), $responseLog, 15, is_array($this->content) ? json_encode($this->content) : $this->content);
} else {
Expand Down