fisharebest/localization

View on GitHub
src/Variant/VariantInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Fisharebest\Localization\Variant;

/**
 * Interface VariantInterface - Representation of a locale variant.
 *
 * @author    Greg Roach <greg@subaqua.co.uk>
 * @copyright (c) 2022 Greg Roach
 * @license   GPL-3.0-or-later
 */
interface VariantInterface
{
    /**
     * The code for this variant.
     *
     * @return string
     */
    public function code();
}