Skip to content

Commit a0660b6

Browse files
committed
Fix CS
1 parent c84c772 commit a0660b6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ private function addHttpClientRetrySection()
18611861
->integerNode('max_delay')->defaultValue(0)->min(0)->info('Max time in ms that a retry should ever be delayed (0 = infinite)')->end()
18621862
->floatNode('jitter')->defaultValue(0.1)->min(0)->max(1)->info('Randomness in percent (between 0 and 1) to apply to the delay')->end()
18631863
->end()
1864-
;
1864+
;
18651865
}
18661866

18671867
private function addMailerSection(ArrayNodeDefinition $rootNode, callable $enableIfStandalone)

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ private function registerWorkflowConfiguration(array $config, ContainerBuilder $
921921
if (isset($workflow['marking_store']['type'])) {
922922
$markingStoreDefinition = new ChildDefinition('workflow.marking_store.method');
923923
$markingStoreDefinition->setArguments([
924-
'state_machine' === $type, //single state
924+
'state_machine' === $type, // single state
925925
$workflow['marking_store']['property'],
926926
]);
927927
} elseif (isset($workflow['marking_store']['service'])) {

Resources/config/cache_debug.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
],
3636
])
3737
->tag('kernel.cache_warmer', ['priority' => 64])
38-
;
38+
;
3939
};

Resources/config/esi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
->set('esi_listener', SurrogateListener::class)
2222
->args([service('esi')->ignoreOnInvalid()])
2323
->tag('kernel.event_subscriber')
24-
;
24+
;
2525
};

Resources/config/validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@
104104
service('property_info'),
105105
])
106106
->tag('validator.auto_mapper')
107-
;
107+
;
108108
};

0 commit comments

Comments
 (0)