@@ -108,7 +108,7 @@ |
||
| 108 | 108 | { |
| 109 | 109 | $themes = \array_filter( |
| 110 | 110 | $this->themeLoader->load(), |
| 111 | - function ($element) use (&$themeName) { |
|
| 111 | + function($element) use (&$themeName) { |
|
| 112 | 112 | return $element->getName() === $themeName; |
| 113 | 113 | } |
| 114 | 114 | ); |
@@ -138,7 +138,7 @@ |
||
| 138 | 138 | |
| 139 | 139 | $ids = array_column($rules['tenants'], 'tenant'); |
| 140 | 140 | $ids = array_unique($ids); |
| 141 | - $tenants = array_filter($rules['tenants'], function ($key, $value) use ($ids) { |
|
| 141 | + $tenants = array_filter($rules['tenants'], function($key, $value) use ($ids) { |
|
| 142 | 142 | return \in_array($value, \array_keys($ids)); |
| 143 | 143 | }, ARRAY_FILTER_USE_BOTH); |
| 144 | 144 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | ->scalarNode('value') |
| 77 | 77 | ->beforeNormalization() |
| 78 | 78 | ->ifArray() |
| 79 | - ->then(function ($value) { |
|
| 79 | + ->then(function($value) { |
|
| 80 | 80 | return json_encode($value); |
| 81 | 81 | }) |
| 82 | 82 | ->end() |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | ->scalarNode('type') |
| 86 | 86 | ->defaultValue('string') |
| 87 | 87 | ->validate() |
| 88 | - ->always(function ($v) { |
|
| 88 | + ->always(function($v) { |
|
| 89 | 89 | if (!in_array($v, ['string', 'array', 'boolean'])) { |
| 90 | 90 | throw new InvalidTypeException(); |
| 91 | 91 | } |
@@ -40,10 +40,10 @@ |
||
| 40 | 40 | ; |
| 41 | 41 | |
| 42 | 42 | $builder->get('value')->addModelTransformer(new CallbackTransformer( |
| 43 | - function ($value) { |
|
| 43 | + function($value) { |
|
| 44 | 44 | return $value; |
| 45 | 45 | }, |
| 46 | - function ($value) { |
|
| 46 | + function($value) { |
|
| 47 | 47 | $allowed = ['true', 'false', '1', '0', null]; |
| 48 | 48 | |
| 49 | 49 | if (\is_bool($value) || \in_array($value, $allowed, true)) { |
@@ -64,10 +64,10 @@ |
||
| 64 | 64 | |
| 65 | 65 | $builder->get('filters') |
| 66 | 66 | ->addModelTransformer(new CallbackTransformer( |
| 67 | - function ($value) { |
|
| 67 | + function($value) { |
|
| 68 | 68 | return json_encode($value); |
| 69 | 69 | }, |
| 70 | - function ($value) { |
|
| 70 | + function($value) { |
|
| 71 | 71 | if (is_array($value)) { |
| 72 | 72 | return $value; |
| 73 | 73 | } |