Skip to content

Commit

Permalink
Update KilledbyMicrosoftBridge.php
Browse files Browse the repository at this point in the history
fix lint
  • Loading branch information
tillcash authored Feb 7, 2024
1 parent 17190fe commit 6c01cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/KilledbyMicrosoftBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function collectData()
$discontinuedServices = json_decode($json, true);

// Sort the array based on dateClose in descending order
usort($discontinuedServices, function($a, $b) {
usort($discontinuedServices, function ($a, $b) {
return strtotime($b['dateClose']) - strtotime($a['dateClose']);
});

Expand Down

0 comments on commit 6c01cd1

Please sign in to comment.