fisharebest/localization

View on GitHub
src/Territory/TerritoryXk.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Fisharebest\Localization\Territory;

/**
 * Class AbstractTerritory - Representation of the territory XK - Kosovo.
 * Note: this is a provisional assignemnt, used by various European organisations.
 *
 * @author    Greg Roach <greg@subaqua.co.uk>
 * @copyright (c) 2022 Greg Roach
 * @license   GPL-3.0-or-later
 */
class TerritoryXk extends AbstractTerritory implements TerritoryInterface
{
    public function code()
    {
        return 'XK';
    }
}