Completed
Push — master ( 64dc92...bcae19 )
by Vladimir
02:12
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
                 ->arrayNode('locales')
33 33
                     ->beforeNormalization()
34 34
                         ->ifString()
35
-                        ->then(function ($v) {
35
+                        ->then(function($v) {
36 36
                             return preg_split('/\s*,\s*/', $v);
37 37
                         })
38 38
                     ->end()
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                 ->arrayNode('required_locales')
43 43
                     ->beforeNormalization()
44 44
                         ->ifString()
45
-                        ->then(function ($v) {
45
+                        ->then(function($v) {
46 46
                             return preg_split('/\s*,\s*/', $v);
47 47
                         })
48 48
                     ->end()
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
                     ->defaultValue(['id', 'locale', 'translatable'])
53 53
                     ->beforeNormalization()
54 54
                         ->ifString()
55
-                        ->then(function ($v) {
55
+                        ->then(function($v) {
56 56
                             return preg_split('/\s*,\s*/', $v);
57 57
                         })
58 58
                     ->end()
Please login to merge, or discard this patch.