@@ -60,19 +60,19 @@ |
||
60 | 60 | ] |
61 | 61 | ); |
62 | 62 | |
63 | - $resolver->setDefault('type', function (Options $options, $value) { |
|
63 | + $resolver->setDefault('type', function(Options $options, $value) { |
|
64 | 64 | if (null === $value) { |
65 | 65 | return; |
66 | 66 | } |
67 | 67 | }); |
68 | 68 | |
69 | - $resolver->setDefault('match', function (Options $options, $value) { |
|
69 | + $resolver->setDefault('match', function(Options $options, $value) { |
|
70 | 70 | if (null === $value) { |
71 | 71 | return; |
72 | 72 | } |
73 | 73 | }); |
74 | 74 | |
75 | - $resolver->setAllowedValues('type', function ($value) { |
|
75 | + $resolver->setAllowedValues('type', function($value) { |
|
76 | 76 | if (in_array($value, ['json', 'xml', 'html'])) { |
77 | 77 | return true; |
78 | 78 | } |