@@ -143,7 +143,7 @@ |
||
| 143 | 143 | |
| 144 | 144 | $ids = array_column($rules['tenants'], 'tenant'); |
| 145 | 145 | $ids = array_unique($ids); |
| 146 | - $tenants = array_filter($rules['tenants'], static function ($key, $value) use ($ids) { |
|
| 146 | + $tenants = array_filter($rules['tenants'], static function($key, $value) use ($ids) { |
|
| 147 | 147 | return array_key_exists($value, $ids); |
| 148 | 148 | }, ARRAY_FILTER_USE_BOTH); |
| 149 | 149 | |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | $tenantCode = $tenant->getCode(); |
| 85 | 85 | $themes = array_filter( |
| 86 | 86 | $this->get('sylius.repository.theme')->findAll(), |
| 87 | - static function ($element) use (&$tenantCode) { |
|
| 87 | + static function($element) use (&$tenantCode) { |
|
| 88 | 88 | if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) { |
| 89 | 89 | return true; |
| 90 | 90 | } |