Skip to content

Commit ad6d10a

Browse files
#13 ability to add modal confirmation or nothing instead of launch from of process run ui.
Quality
1 parent 5507185 commit ad6d10a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Controller/Admin/Process/LaunchAction.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
use Symfony\Component\Routing\Attribute\Route;
3131
use Symfony\Component\Security\Http\Attribute\IsGranted;
3232
use Symfony\Component\Uid\Uuid;
33-
use Symfony\Component\Validator\Exception\MissingOptionsException;
3433

3534
#[Route(
3635
'/process/launch',
@@ -57,7 +56,7 @@ public function __invoke(
5756
}
5857
$uiOptions = $processConfigurationsManager->getUiOptions($processCode);
5958
if (null === $uiOptions) {
60-
throw new \InvalidArgumentException("Missing UI Options");
59+
throw new \InvalidArgumentException('Missing UI Options');
6160
}
6261
if (false === $uiOptions['input_context_launcher_form']) {
6362
$this->dispatch($processCode);

0 commit comments

Comments
 (0)