Completed
Push — master ( 05bb5a...5289b8 )
by Rafał
34:32 queued 04:15
created
src/SWP/Bundle/ContentBundle/EventListener/ProcessArticleMediaListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         }
42 42
 
43 43
         $items = $package->getItems()->filter(
44
-            function ($entry) use ($guids) {
44
+            function($entry) use ($guids) {
45 45
                 return !\in_array($entry->getGuid(), $guids, true);
46 46
             }
47 47
         );
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
             if (null !== ($packageItems = $packageItem->getItems()) && 0 !== $packageItems->count()) {
59 59
                 $packageItems = $packageItem->getItems()->filter(
60
-                    function ($entry) use ($guids) {
60
+                    function($entry) use ($guids) {
61 61
                         return !\in_array($entry->getGuid(), $guids, true);
62 62
                     }
63 63
                 );
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/Component/TemplatesSystem/Gimme/Context/Context.php 1 patch
Doc Comments   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,6 +75,9 @@  discard block
 block discarded – undo
75 75
      */
76 76
     private $configurationCache = [];
77 77
 
78
+    /**
79
+     * @param string $configsPath
80
+     */
78 81
     public function __construct(EventDispatcherInterface $dispatcher, Cache $metadataCache, $configsPath = null)
79 82
     {
80 83
         $this->metadataCache = $metadataCache;
@@ -175,6 +178,9 @@  discard block
 block discarded – undo
175 178
         return new Meta($this, $value, $this->getConfigurationForValue($value));
176 179
     }
177 180
 
181
+    /**
182
+     * @return boolean
183
+     */
178 184
     public function isSupported($value)
179 185
     {
180 186
         if (!is_object($value)) {
@@ -312,7 +318,7 @@  discard block
 block discarded – undo
312 318
     }
313 319
 
314 320
     /**
315
-     * @param array $keys
321
+     * @param string[] $keys
316 322
      *
317 323
      * @return string
318 324
      */
@@ -344,7 +350,7 @@  discard block
 block discarded – undo
344 350
     /**
345 351
      * @param string $id
346 352
      *
347
-     * @return null|true
353
+     * @return null|boolean
348 354
      */
349 355
     public function restoreTemporaryUnset($id)
350 356
     {
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
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
     public function retryDecider()
183 183
     {
184
-        return function (
184
+        return function(
185 185
             $retries,
186 186
             Request $request,
187 187
             Response $response = null,
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
     public function retryDelay()
218 218
     {
219
-        return function ($numberOfRetries): int {
219
+        return function($numberOfRetries): int {
220 220
             return 1000 * $numberOfRetries;
221 221
         };
222 222
     }
Please login to merge, or discard this patch.
src/SWP/Component/TemplatesSystem/Twig/Extension/GimmeExtension.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,22 +76,22 @@
 block discarded – undo
76 76
     public function getFilters()
77 77
     {
78 78
         return [
79
-            new \Twig_SimpleFilter('start', function ($node, $value) {
79
+            new \Twig_SimpleFilter('start', function($node, $value) {
80 80
                 $node['_collection_type_filters']['start'] = $value;
81 81
 
82 82
                 return $node;
83 83
             }, ['needs_context' => false]),
84
-            new \Twig_SimpleFilter('limit', function ($node, $value) {
84
+            new \Twig_SimpleFilter('limit', function($node, $value) {
85 85
                 $node['_collection_type_filters']['limit'] = $value;
86 86
 
87 87
                 return $node;
88 88
             }, ['needs_context' => false]),
89
-            new \Twig_SimpleFilter('order', function ($node, $value1, $value2) {
89
+            new \Twig_SimpleFilter('order', function($node, $value1, $value2) {
90 90
                 $node['_collection_type_filters']['order'][] = [$value1, $value2];
91 91
 
92 92
                 return $node;
93 93
             }, ['needs_context' => false]),
94
-            new \Twig_SimpleFilter('dateRange', function ($node, $value1, $value2) {
94
+            new \Twig_SimpleFilter('dateRange', function($node, $value1, $value2) {
95 95
                 $node['_collection_type_filters']['date_range'] = [$value1, $value2];
96 96
 
97 97
                 return $node;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     }
72 72
 
73 73
     /**
74
-     * @return array
74
+     * @return \Twig_SimpleFilter[]
75 75
      */
76 76
     public function getFilters()
77 77
     {
Please login to merge, or discard this patch.
SWP/Bundle/ContentBundle/EventListener/ProcessArticleSlideshowsListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $package = $event->getPackage();
49 49
         $article = $event->getArticle();
50 50
 
51
-        $groups = $package->getGroups()->filter(function ($group) {
51
+        $groups = $package->getGroups()->filter(function($group) {
52 52
             return GroupInterface::TYPE_RELATED !== $group->getType();
53 53
         });
54 54
 
Please login to merge, or discard this patch.
SWP/Bundle/ContentBundle/EventListener/ProcessRelatedArticlesListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
         $this->removeOldRelatedArticles($article);
51 51
 
52
-        $relatedItemsGroups = $package->getGroups()->filter(function ($group) {
52
+        $relatedItemsGroups = $package->getGroups()->filter(function($group) {
53 53
             return GroupInterface::TYPE_RELATED === $group->getType();
54 54
         });
55 55
 
Please login to merge, or discard this patch.
SWP/Bundle/CoreBundle/Controller/RelatedArticleOrganizationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         $content = $request->getContent();
46 46
         $package = $this->get('swp_bridge.transformer.json_to_package')->transform($content);
47 47
 
48
-        $relatedItemsGroups = $package->getGroups()->filter(function ($group) {
48
+        $relatedItemsGroups = $package->getGroups()->filter(function($group) {
49 49
             return GroupInterface::TYPE_RELATED === $group->getType();
50 50
         });
51 51
 
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Matcher/RulesMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 
144 144
         $ids = array_column($rules['tenants'], 'tenant');
145 145
         $ids = array_unique($ids);
146
-        $tenants = array_filter($rules['tenants'], function ($key, $value) use ($ids) {
146
+        $tenants = array_filter($rules['tenants'], function($key, $value) use ($ids) {
147 147
             return array_key_exists($value, $ids);
148 148
         }, ARRAY_FILTER_USE_BOTH);
149 149
 
Please login to merge, or discard this patch.