@@ -119,7 +119,7 @@ private function getUploadedPartialFilePath(UploadedPartialFile $file, int $chun
119119 $ dir = self ::PARTIAL_UPLOADS ;
120120 $ id = $ file ->getId ();
121121 $ name = $ file ->getName ();
122- return "$ dir/ $ { id}_ $ { name}_ $ chunk " ;
122+ return "$ dir/ { $ id }_ { $ name }_ $ chunk " ;
123123 }
124124
125125 /**
@@ -185,7 +185,7 @@ private function getUploadedFilePath(UploadedFile $file): string
185185 $ dir = self ::UPLOADS ;
186186 $ id = $ file ->getId ();
187187 $ name = $ file ->getName ();
188- return "$ dir/ $ { id}_ $ name " ;
188+ return "$ dir/ { $ id }_ $ name " ;
189189 }
190190
191191 /**
@@ -359,7 +359,7 @@ private function getAttachmentFilePath(AttachmentFile $file): string
359359 $ userDir = $ user ? "user_ $ user " : "_system " ; // files without user are treated as sys. files
360360 $ id = $ file ->getId ();
361361 $ name = $ file ->getName ();
362- return "$ dir/ $ userDir/ $ { id}_ $ { name}" ;
362+ return "$ dir/ $ userDir/ { $ id }_ { $ name }" ;
363363 }
364364
365365 /**
@@ -406,7 +406,7 @@ private function getJobConfigPath(Submission $submission): string
406406 $ dir = self ::augmentDir (self ::JOB_CONFIGS , $ submission );
407407 $ type = $ submission ::JOB_TYPE ;
408408 $ id = $ submission ->getId ();
409- return "$ dir/ $ { id}_ $ { type}.yml " ;
409+ return "$ dir/ { $ id }_ { $ type }.yml " ;
410410 }
411411
412412 /**
@@ -450,7 +450,7 @@ private function getSolutionArchivePath(Solution $solution): string
450450 {
451451 $ dir = self ::augmentDir (self ::SOLUTIONS , $ solution );
452452 $ id = $ solution ->getId ();
453- return "$ dir/ $ { id}.zip " ;
453+ return "$ dir/ { $ id }.zip " ;
454454 }
455455
456456 /**
@@ -508,7 +508,7 @@ public function deleteSolutionArchive(Solution $solution): bool
508508 */
509509 private function getWorkerSubmissionArchivePath (string $ type , string $ id ): string
510510 {
511- return self ::WORKER_DOWNLOADS . "/ $ { id}_ $ { type}.zip " ;
511+ return self ::WORKER_DOWNLOADS . "/ { $ id }_ { $ type }.zip " ;
512512 }
513513
514514 /**
@@ -562,7 +562,7 @@ public function createWorkerSubmissionArchive(Submission $submission): ?IImmutab
562562 */
563563 private function getWorkerUploadResultsArchivePath (string $ type , string $ submissionId ): string
564564 {
565- return self ::WORKER_UPLOADS . "/ $ { submissionId}_ $ { type}.zip " ;
565+ return self ::WORKER_UPLOADS . "/ { $ submissionId }_ { $ type }.zip " ;
566566 }
567567
568568 /**
@@ -599,7 +599,7 @@ private function getResultsArchivePath(Submission $submission): string
599599 $ dir = self ::augmentDir (self ::RESULTS , $ submission );
600600 $ type = $ submission ::JOB_TYPE ;
601601 $ id = $ submission ->getId ();
602- return "$ dir/ $ { id}_ $ { type}.zip " ;
602+ return "$ dir/ { $ id }_ { $ type }.zip " ;
603603 }
604604
605605 /**
0 commit comments