Completed
Pull Request — master (#1218)
by
unknown
36s
created
src/SWP/Bundle/SettingsBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
                                         }
Please login to merge, or discard this patch.
src/SWP/Bundle/SettingsBundle/Form/Type/SettingType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,10 +40,10 @@
 block discarded – undo
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)) {
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Installer/TenantAwareThemeInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.
src/SWP/Bundle/MultiTenancyBundle/Form/Type/TenantChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function configureOptions(OptionsResolver $resolver)
58 58
     {
59 59
         $resolver->setDefaults([
60
-            'choices' => function (Options $options) {
60
+            'choices' => function(Options $options) {
61 61
                 return $this->tenantRepository->findAll();
62 62
             },
63 63
             'choice_value' => 'code',
Please login to merge, or discard this patch.
src/SWP/Component/Bridge/Model/AuthorsAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function getAuthorsNames(): array
55 55
     {
56
-        return array_map(function ($author) {
56
+        return array_map(function($author) {
57 57
             return $author->getName();
58 58
         }, $this->authors->toArray());
59 59
     }
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Model/KeywordsAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function getKeywordsNames(): array
55 55
     {
56
-        return array_map(function ($keyword) {
56
+        return array_map(function($keyword) {
57 57
             return $keyword->getName();
58 58
         }, $this->keywords->toArray());
59 59
     }
Please login to merge, or discard this patch.
src/SWP/Component/Bridge/Model/BaseContent.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 
385 385
     private function mapNames(array $values): array
386 386
     {
387
-        return array_map(function ($subject) {
387
+        return array_map(function($subject) {
388 388
             if (\is_array($subject) && \array_key_exists('name', $subject)) {
389 389
                 return $subject['name'];
390 390
             }
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 
396 396
     private function mapCodes(array $values): array
397 397
     {
398
-        return array_map(function ($subject) {
398
+        return array_map(function($subject) {
399 399
             if (\is_array($subject) && \array_key_exists('code', $subject)) {
400 400
                 return $subject['code'];
401 401
             }
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 
407 407
     private function mapSchemes(array $values): array
408 408
     {
409
-        return array_map(function ($subject) {
409
+        return array_map(function($subject) {
410 410
             if (\is_array($subject) && \array_key_exists('scheme', $subject)) {
411 411
                 return $subject['scheme'];
412 412
             }
Please login to merge, or discard this patch.
src/SWP/Bundle/TemplatesSystemBundle/DataCollector/ContextDataCollector.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,7 @@
 block discarded – undo
47 47
     {
48 48
         $this->data = [
49 49
             'currentPage' => $this->context->getCurrentPage() instanceof MetaInterface ?
50
-                $this->getRouteData($this->context->getCurrentPage()->getValues()) :
51
-                [],
50
+                $this->getRouteData($this->context->getCurrentPage()->getValues()) : [],
52 51
             'registeredMeta' => $this->context->getRegisteredMeta(),
53 52
         ];
54 53
     }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Twig/StringyExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $this->initialized = true;
93 93
         $stringyClass = new \ReflectionClass('Stringy\Stringy');
94 94
         $methods = $stringyClass->getMethods(\ReflectionMethod::IS_PUBLIC);
95
-        $names = array_map(function ($value) {
95
+        $names = array_map(function($value) {
96 96
             return $value->getName();
97 97
         }, $methods);
98 98
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
                 if (array_key_exists($name, $this->environment->getFunctions())) {
110 110
                     continue;
111 111
                 }
112
-                $this->functions[$name] = new TwigFunction($name, function () use ($name) {
112
+                $this->functions[$name] = new TwigFunction($name, function() use ($name) {
113 113
                     return call_user_func_array(['Stringy\StaticStringy', $name], func_get_args());
114 114
                 });
115 115
             } else {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                 if (array_key_exists($name, $this->environment->getFilters())) {
118 118
                     continue;
119 119
                 }
120
-                $this->filters[$name] = new TwigFilter($name, function () use ($name) {
120
+                $this->filters[$name] = new TwigFilter($name, function() use ($name) {
121 121
                     return (string) call_user_func_array(['Stringy\StaticStringy', $name], func_get_args());
122 122
                 });
123 123
             }
Please login to merge, or discard this patch.