| @@ -46,8 +46,8 @@ | ||
| 46 | 46 | ->end() | 
| 47 | 47 |                  ->arrayNode('persistence') | 
| 48 | 48 | ->validate() | 
| 49 | -                    ->ifTrue(function ($v) { | |
| 50 | -                        return count(array_filter($v, function ($persistence) { | |
| 49 | +                    ->ifTrue(function($v) { | |
| 50 | +                        return count(array_filter($v, function($persistence) { | |
| 51 | 51 | return $persistence['enabled']; | 
| 52 | 52 | })) > 1; | 
| 53 | 53 | }) | 
| @@ -50,7 +50,7 @@ | ||
| 50 | 50 | public function configureOptions(OptionsResolver $resolver) | 
| 51 | 51 |      { | 
| 52 | 52 | $resolver | 
| 53 | -            ->setNormalizer('choices', function () { | |
| 53 | +            ->setNormalizer('choices', function() { | |
| 54 | 54 | /** @var OrganizationInterface[] $organizations */ | 
| 55 | 55 | $organizations = $this->organizationRepository->findAvailable(); | 
| 56 | 56 | $choices = []; | 
| @@ -40,7 +40,7 @@ | ||
| 40 | 40 | public function configureOptions(OptionsResolver $resolver) | 
| 41 | 41 |      { | 
| 42 | 42 | $resolver | 
| 43 | -            ->setNormalizer('choices', function () { | |
| 43 | +            ->setNormalizer('choices', function() { | |
| 44 | 44 | /** @var ThemeInterface[] $themes */ | 
| 45 | 45 | $themes = $this->themeProvider->getCurrentTenantAvailableThemes(); | 
| 46 | 46 | $choices = []; | 
| @@ -115,7 +115,7 @@ | ||
| 115 | 115 | |
| 116 | 116 | $tenant = reset($tenants); | 
| 117 | 117 |              if ($numTenants > 1) { | 
| 118 | -                $tenantNames = array_map(function ($tenant) { | |
| 118 | +                $tenantNames = array_map(function($tenant) { | |
| 119 | 119 | return $tenant->getName(); | 
| 120 | 120 | }, $tenants); | 
| 121 | 121 | |
| @@ -91,10 +91,10 @@ | ||
| 91 | 91 | |
| 92 | 92 |          $builder->get('cacheTimeInSeconds') | 
| 93 | 93 | ->addModelTransformer(new CallbackTransformer( | 
| 94 | -                function ($value) { | |
| 94 | +                function($value) { | |
| 95 | 95 | return $value; | 
| 96 | 96 | }, | 
| 97 | -                function ($value) { | |
| 97 | +                function($value) { | |
| 98 | 98 | return (int) $value; | 
| 99 | 99 | } | 
| 100 | 100 | )) | 
| @@ -51,7 +51,7 @@ | ||
| 51 | 51 | return true; | 
| 52 | 52 | } | 
| 53 | 53 | |
| 54 | -        $this->logger->error(implode(', ', array_map(function ($error) { | |
| 54 | +        $this->logger->error(implode(', ', array_map(function($error) { | |
| 55 | 55 |              return sprintf('"%s" %s', $error['property'], $error['message']); | 
| 56 | 56 | }, $validator->getErrors()))); | 
| 57 | 57 | |
| @@ -131,7 +131,7 @@ | ||
| 131 | 131 |          $default = $input->getOption('default'); | 
| 132 | 132 |          if (!$input->getArgument($name) && !$default && $name !== $this->arguments[1]) { | 
| 133 | 133 |              $question = new Question(sprintf('<question>Please enter %s:</question>', $name)); | 
| 134 | -            $question->setValidator(function ($argument) use ($name) { | |
| 134 | +            $question->setValidator(function($argument) use ($name) { | |
| 135 | 135 |                  if (empty($argument)) { | 
| 136 | 136 |                      throw new \RuntimeException(sprintf('The %s can not be empty', $name)); | 
| 137 | 137 | } | 
| @@ -161,7 +161,7 @@ discard block | ||
| 161 | 161 |      { | 
| 162 | 162 | $tenantCode = substr($themeName, strpos($themeName, '@') + 1); | 
| 163 | 163 | |
| 164 | -        return array_map(function ($parentName) use ($themeName, $existingThemes, $tenantCode) { | |
| 164 | +        return array_map(function($parentName) use ($themeName, $existingThemes, $tenantCode) { | |
| 165 | 165 | $parentName .= '@'.$tenantCode; | 
| 166 | 166 |              if (!isset($existingThemes[$parentName])) { | 
| 167 | 167 | throw new ThemeLoadingFailedException(sprintf( | 
| @@ -182,7 +182,7 @@ discard block | ||
| 182 | 182 | */ | 
| 183 | 183 | private function convertAuthorsArraysToAuthorsObjects(array $authorsArrays) | 
| 184 | 184 |      { | 
| 185 | -        return array_map(function (array $authorArray) { | |
| 185 | +        return array_map(function(array $authorArray) { | |
| 186 | 186 | return $this->themeAuthorFactory->createFromArray($authorArray); | 
| 187 | 187 | }, $authorsArrays); | 
| 188 | 188 | } | 
| @@ -194,7 +194,7 @@ discard block | ||
| 194 | 194 | */ | 
| 195 | 195 | private function convertScreenshotsArraysToScreenshotsObjects(array $screenshotsArrays) | 
| 196 | 196 |      { | 
| 197 | -        return array_map(function (array $screenshotArray) { | |
| 197 | +        return array_map(function(array $screenshotArray) { | |
| 198 | 198 | return $this->themeScreenshotFactory->createFromArray($screenshotArray); | 
| 199 | 199 | }, $screenshotsArrays); | 
| 200 | 200 | } | 
| @@ -85,7 +85,7 @@ | ||
| 85 | 85 | $currentTheme = $tenant->getThemeName(); | 
| 86 | 86 | $themes = array_filter( | 
| 87 | 87 |              $this->get('sylius.repository.theme')->findAll(), | 
| 88 | -            function ($element) use (&$tenantCode, $currentTheme) { | |
| 88 | +            function($element) use (&$tenantCode, $currentTheme) { | |
| 89 | 89 |                  if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) { | 
| 90 | 90 | return true; | 
| 91 | 91 | } |