the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create enums directory

nanaya 27b0d113 32485bca

+6 -4
+1 -1
app/Libraries/Ip.php app/Enums/Ip.php
··· 5 5 6 6 declare(strict_types=1); 7 7 8 - namespace App\Libraries; 8 + namespace App\Enums; 9 9 10 10 enum Ip: string 11 11 {
+1
app/Libraries/Ip2Asn.php
··· 7 7 8 8 namespace App\Libraries; 9 9 10 + use App\Enums\Ip; 10 11 use Exception; 11 12 use WeakMap; 12 13
+1
app/Libraries/Ip2AsnUpdater.php
··· 7 7 8 8 namespace App\Libraries; 9 9 10 + use App\Enums\Ip; 10 11 use Log; 11 12 12 13 class Ip2AsnUpdater
+1 -1
app/Libraries/Ruleset.php app/Enums/Ruleset.php
··· 5 5 6 6 declare(strict_types=1); 7 7 8 - namespace App\Libraries; 8 + namespace App\Enums; 9 9 10 10 enum Ruleset: int 11 11 {
+1 -1
app/Models/Multiplayer/PlaylistItem.php
··· 5 5 6 6 namespace App\Models\Multiplayer; 7 7 8 + use App\Enums\Ruleset; 8 9 use App\Exceptions\InvariantException; 9 - use App\Libraries\Ruleset; 10 10 use App\Models\Beatmap; 11 11 use App\Models\Model; 12 12 use App\Models\ScoreToken;
+1 -1
tests/Libraries/ModsTest.php
··· 5 5 6 6 namespace Tests\Libraries; 7 7 8 + use App\Enums\Ruleset; 8 9 use App\Exceptions\InvariantException; 9 - use App\Libraries\Ruleset; 10 10 use Tests\TestCase; 11 11 12 12 class ModsTest extends TestCase