@@ -64,7 +64,7 @@ |
||
| 64 | 64 | { |
| 65 | 65 | $stringyClass = new \ReflectionClass('Stringy\Stringy'); |
| 66 | 66 | $methods = $stringyClass->getMethods(\ReflectionMethod::IS_PUBLIC); |
| 67 | - $names = array_map(function ($value) { |
|
| 67 | + $names = array_map(function($value) { |
|
| 68 | 68 | return $value->getName(); |
| 69 | 69 | }, $methods); |
| 70 | 70 | |
@@ -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 = []; |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | |
| 101 | 101 | if (!$input->getArgument($name) && !$default) { |
| 102 | 102 | $question = new Question(sprintf('<question>Please enter %s:</question>', $name)); |
| 103 | - $question->setValidator(function ($argument) use ($name) { |
|
| 103 | + $question->setValidator(function($argument) use ($name) { |
|
| 104 | 104 | if (empty($argument)) { |
| 105 | 105 | throw new \RuntimeException(sprintf('The %s can not be empty', $name)); |
| 106 | 106 | } |
@@ -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 | }) |
@@ -49,17 +49,17 @@ |
||
| 49 | 49 | public function getFilters() |
| 50 | 50 | { |
| 51 | 51 | return [ |
| 52 | - new \Twig_SimpleFilter('start', function ($context, $node, $value) { |
|
| 52 | + new \Twig_SimpleFilter('start', function($context, $node, $value) { |
|
| 53 | 53 | $node['_collection_type_filters']['start'] = $value; |
| 54 | 54 | |
| 55 | 55 | return $node; |
| 56 | 56 | }, ['needs_context' => true]), |
| 57 | - new \Twig_SimpleFilter('limit', function ($context, $node, $value) { |
|
| 57 | + new \Twig_SimpleFilter('limit', function($context, $node, $value) { |
|
| 58 | 58 | $node['_collection_type_filters']['limit'] = $value; |
| 59 | 59 | |
| 60 | 60 | return $node; |
| 61 | 61 | }, ['needs_context' => true]), |
| 62 | - new \Twig_SimpleFilter('order', function ($context, $node, $value1, $value2) { |
|
| 62 | + new \Twig_SimpleFilter('order', function($context, $node, $value1, $value2) { |
|
| 63 | 63 | $node['_collection_type_filters']['order'] = [$value1, $value2]; |
| 64 | 64 | |
| 65 | 65 | return $node; |