Skip to content

Commit d90ae1b

Browse files
keradusfabpot
authored andcommitted
chore: PHP CS Fixer fixes
1 parent 91905f2 commit d90ae1b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ private function registerWorkflowConfiguration(array $config, ContainerBuilder $
11591159
$workflow['definition_validators'][] = match ($workflow['type']) {
11601160
'state_machine' => Workflow\Validator\StateMachineValidator::class,
11611161
'workflow' => Workflow\Validator\WorkflowValidator::class,
1162-
default => throw new \LogicException(\sprintf('Invalid workflow type "%s".', $workflow['type'])),
1162+
default => throw new \LogicException(\sprintf('Invalid workflow type "%s".', $workflow['type'])),
11631163
};
11641164

11651165
// Create Workflow

Tests/DependencyInjection/PhpFrameworkExtensionTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -440,10 +440,10 @@ public function testValidatorEmailValidationMode(string $mode)
440440

441441
$this->createContainerFromClosure(function (ContainerBuilder $container) use ($mode) {
442442
$container->loadFromExtension('framework', [
443-
'annotations' => false,
444-
'http_method_override' => false,
445-
'handle_all_throwables' => true,
446-
'php_errors' => ['log' => true],
443+
'annotations' => false,
444+
'http_method_override' => false,
445+
'handle_all_throwables' => true,
446+
'php_errors' => ['log' => true],
447447
'validation' => [
448448
'email_validation_mode' => $mode,
449449
],

0 commit comments

Comments
 (0)