Passed
Push — master ( 20314c...bef361 )
by
unknown
13:37
created
typo3/sysext/dashboard/Classes/Widgets/RssWidget.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
                 'description' => trim(strip_tags((string)$item->description)),
123 123
             ];
124 124
         }
125
-        usort($items, function ($item1, $item2) {
125
+        usort($items, function($item1, $item2) {
126 126
             return new \DateTime($item2['pubDate']) <=> new \DateTime($item1['pubDate']);
127 127
         });
128 128
         $items = array_slice($items, 0, $this->options['limit']);
Please login to merge, or discard this patch.