···11+<?php
22+33+// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
44+// See the LICENCE file in the repository root for full licence text.
55+66+declare(strict_types=1);
77+88+namespace App\Libraries;
99+1010+enum Ip: string
1111+{
1212+ case V4 = 'v4';
1313+ case V6 = 'v6';
1414+}