Completed
Push — master ( 178130...678bac )
by Paweł
15:27
created
src/SWP/Bundle/ContentBundle/EventListener/ProcessArticleMediaListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         }
43 43
 
44 44
         $items = $package->getItems()->filter(
45
-            static function ($entry) use ($guids) {
45
+            static function($entry) use ($guids) {
46 46
                 return !in_array($entry->getGuid(), $guids, true);
47 47
             }
48 48
         );
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
             if (null !== ($packageItems = $packageItem->getItems()) && 0 !== $packageItems->count()) {
60 60
                 $packageItems = $packageItem->getItems()->filter(
61
-                    static function ($entry) use ($guids) {
61
+                    static function($entry) use ($guids) {
62 62
                         return !in_array($entry->getGuid(), $guids, true);
63 63
                     }
64 64
                 );
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
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             return;
51 51
         }
52 52
 
53
-        $groups->filter(static function ($group) {
53
+        $groups->filter(static function($group) {
54 54
             /* @var GroupInterface $group */
55 55
             return GroupInterface::TYPE_RELATED !== $group->getType();
56 56
         });
Please login to merge, or discard this patch.