We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5507185 commit ad6d10aCopy full SHA for ad6d10a
src/Controller/Admin/Process/LaunchAction.php
@@ -30,7 +30,6 @@
30
use Symfony\Component\Routing\Attribute\Route;
31
use Symfony\Component\Security\Http\Attribute\IsGranted;
32
use Symfony\Component\Uid\Uuid;
33
-use Symfony\Component\Validator\Exception\MissingOptionsException;
34
35
#[Route(
36
'/process/launch',
@@ -57,7 +56,7 @@ public function __invoke(
57
56
}
58
$uiOptions = $processConfigurationsManager->getUiOptions($processCode);
59
if (null === $uiOptions) {
60
- throw new \InvalidArgumentException("Missing UI Options");
+ throw new \InvalidArgumentException('Missing UI Options');
61
62
if (false === $uiOptions['input_context_launcher_form']) {
63
$this->dispatch($processCode);
0 commit comments