Automated formatting changes

This commit is contained in:
Formatter Bot 2021-06-23 22:12:40 +00:00
parent 02d833f869
commit 3dc169e935
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ class Navigation
/**
* Install navigation providing
*
* @param string $path Module path
* @param ApplicationAbstract $app Application
* @param string $path Module path
* @param ApplicationAbstract $app Application
*
* @return void
*

View File

@ -451,9 +451,9 @@ final class ApiController extends Controller
$uploadedFiles = $request->getFiles() ?? [];
if (!empty($uploadedFiles)) {
$upload = new UploadFile();
$upload = new UploadFile();
$upload->preserveFileName = false;
$upload->soutputDir = __DIR__ . '/../../../Web/Backend/img';
$upload->soutputDir = __DIR__ . '/../../../Web/Backend/img';
$status = $upload->upload($uploadedFiles, 'logo.png', true);
}