Move to DNW namespace

This commit is contained in:
Alex Wulf
2022-07-05 15:33:34 +02:00
parent a99a73e02c
commit 812e454dd4
77 changed files with 536 additions and 361 deletions

View File

@ -1,4 +1,4 @@
<?php namespace Moserware\Skills;
<?php namespace DNW\Skills;
/**
* Helper class to sort ranks in non-decreasing order.
@ -13,7 +13,7 @@ class RankSorter
* @return array
*/
public static function sort(array &$teams, array &$teamRanks)
{
{
array_multisort($teamRanks, $teams);
return $teams;
}