Completed
Pull Request — master (#643)
by Rafał
16:54
created
SWP/Bundle/CoreBundle/Controller/RelatedArticleOrganizationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 
75 75
     private function getRelated(PackageInterface $package): RelatedArticleList
76 76
     {
77
-        $relatedItemsGroups = $package->getGroups()->filter(function ($group) {
77
+        $relatedItemsGroups = $package->getGroups()->filter(function($group) {
78 78
             return GroupInterface::TYPE_RELATED === $group->getType();
79 79
         });
80 80
 
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Manager/MediaManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
     protected function retryDecider()
166 166
     {
167
-        return function (
167
+        return function(
168 168
             $retries,
169 169
             Request $request,
170 170
             Response $response = null,
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
 
206 206
     protected function retryDelay()
207 207
     {
208
-        return function ($numberOfRetries): int {
208
+        return function($numberOfRetries): int {
209 209
             return 1000 * $numberOfRetries;
210 210
         };
211 211
     }
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.
src/SWP/Component/TemplatesSystem/Twig/Extension/GimmeExtension.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -79,22 +79,22 @@
 block discarded – undo
79 79
     public function getFilters()
80 80
     {
81 81
         return [
82
-            new TwigFilter('start', function ($node, $value) {
82
+            new TwigFilter('start', function($node, $value) {
83 83
                 $node['_collection_type_filters']['start'] = $value;
84 84
 
85 85
                 return $node;
86 86
             }, ['needs_context' => false]),
87
-            new TwigFilter('limit', function ($node, $value) {
87
+            new TwigFilter('limit', function($node, $value) {
88 88
                 $node['_collection_type_filters']['limit'] = $value;
89 89
 
90 90
                 return $node;
91 91
             }, ['needs_context' => false]),
92
-            new TwigFilter('order', function ($node, $value1, $value2) {
92
+            new TwigFilter('order', function($node, $value1, $value2) {
93 93
                 $node['_collection_type_filters']['order'][] = [$value1, $value2];
94 94
 
95 95
                 return $node;
96 96
             }, ['needs_context' => false]),
97
-            new TwigFilter('dateRange', function ($node, $value1, $value2) {
97
+            new TwigFilter('dateRange', function($node, $value1, $value2) {
98 98
                 $node['_collection_type_filters']['date_range'] = [$value1, $value2];
99 99
 
100 100
                 return $node;
Please login to merge, or discard this patch.