Skip to content

Commit bf5e15c

Browse files
committed
Fix cs
1 parent df228ff commit bf5e15c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function getConfigTreeBuilder()
3333
->arrayNode('fake_ip')
3434
->beforeNormalization()
3535
->ifString()
36-
->then(function($value) { return array('ip' => $value); })
36+
->then(function ($value) { return array('ip' => $value); })
3737
->end()
3838
->treatFalseLike(array('enabled' => false))
3939
->treatTrueLike(array('enabled' => true))
@@ -77,7 +77,7 @@ public function getConfigTreeBuilder()
7777
->scalarNode('lifetime')
7878
->defaultValue(86400)
7979
->validate()
80-
->ifTrue(function($v) { return !is_integer($v); })
80+
->ifTrue(function ($v) { return !is_integer($v); })
8181
->thenInvalid('Only integer are allowed!')
8282
->end()
8383
->end()

0 commit comments

Comments
 (0)